Accessing Settings
To configure Quick Select:Available Settings
Quick Select provides two main configuration options:Modifier Key
Choose which key activates Quick Select numbering.The keyboard modifier that must be held to trigger Quick Select.Options:
metaKey- Command (macOS) / Windows key (Windows) / Super (Linux)ctrlKey- Control key (all platforms)altKey- Alt/Option key (all platforms)
Platform Behavior
- macOS
- Windows
- Linux
- metaKey: Command (⌘) key
- ctrlKey: Control (⌃) key
- altKey: Option (⌥) key
metaKey (Command)The default
metaKey setting automatically maps to Command on macOS and Ctrl on Windows/Linux, providing a consistent cross-platform experience.Counter Transition Style
Control how the numbered counters appear and disappear.The visual transition effect for Quick Select counters.Options:
none- Counters appear instantly without animationfade- Counters fade in/out smoothlyslide- Counters slide in from the right (default)permanent- Counters are always visible
Transition Styles Explained
None - Instant Appearance
None - Instant Appearance
Description: Counters appear immediately when you press the modifier key with no animation.Best for:
- Users who prefer minimal visual effects
- Slower computers where animations may lag
- Accessibility needs requiring instant feedback
Fade - Smooth Opacity Transition
Fade - Smooth Opacity Transition
Description: Counters gradually fade into view over 200ms with an ease-in timing function.Best for:
- Users who prefer subtle animations
- Clean, professional appearance
- Minimal distraction from modal content
Slide - Animated Entry (Default)
Slide - Animated Entry (Default)
Description: Counters slide in from off-screen (right side) with a smooth animation.
- Slide out: 100ms ease-out when releasing modifier
- Slide in: 200ms ease-in when pressing modifier
- Default experience for most users
- Clear visual indication of activation
- Satisfying tactile feedback
right: -50px to right: var(--quick-select-inset) with opacity.Permanent - Always Visible
Permanent - Always Visible
Description: Counters are always displayed without requiring the modifier key.Best for:
- Users who primarily use Quick Select
- Learning the plugin (see numbers while typing)
- Accessibility - no need to hold modifier
- Touch-based workflows
position: relative and opacity: 1.Default Settings
Here are the default settings as defined in the source code:Settings Interface
The settings are defined with TypeScript types:Configuration Examples
Visual Customization
Quick Select uses CSS custom properties for spacing:Counter Styling
The counters are styled with:- Color:
var(--text-muted)- matches Obsidian’s muted text color - Background:
var(--background-primary-alt)- subtle background (except permanent mode) - Font Size:
0.8em- slightly smaller than modal text - Border Radius:
4px- rounded corners
Advanced Configuration
While Quick Select only exposes two settings in the UI, advanced users can modify behavior through CSS:Custom Counter Positioning
Custom Counter Colors
Adjust Animation Speed
CSS customizations require creating a CSS snippet in Obsidian’s snippets folder and enabling it in Appearance settings.
Troubleshooting Settings
Modifier key not working
Modifier key not working
Problem: Pressing modifier + number doesn’t select items.Solutions:
- Check if another plugin or system shortcut is using the same key combination
- Try changing to a different modifier key in settings
- Restart Obsidian after changing settings
- Check if the modal is actually a Quick Select-compatible modal type
Counters not appearing
Counters not appearing
Problem: Numbers don’t show up when holding modifier key.Solutions:
- Try setting transition style to “permanent” to see if counters work at all
- Check if custom CSS snippets are interfering
- Disable other plugins to check for conflicts
- Try in a different modal (Quick Switcher is most reliable for testing)
Animations feel sluggish
Animations feel sluggish
Problem: Transition animations are laggy or choppy.Solutions:
- Change transition style to “none” for instant appearance
- Check system performance and close resource-heavy apps
- Try a different transition style (fade is lighter than slide)
Resetting to Defaults
To reset Quick Select settings to defaults:- Open Settings → Quick Select
- Set Modifier key to
Meta - Set Counter transition style to
Slide