Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Open Find / Replace dialog in the current space.
Set the window's collection behavior to include NSWindowCollectionBehaviorMoveToActiveSpace.

This tells macOS to always show the Find dialog in the current active space
(the one where you press Command+F) rather than following the application to
another space.

Resolves #1629
  • Loading branch information
xwmx committed Jan 28, 2026
commit 655983b4e7e2568a02287e798883dcf524a391c4
6 changes: 6 additions & 0 deletions src/MacVim/MMFindReplaceController.m
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ - (void)showWithText:(NSString *)text flags:(int)flags
// Ensure that the window has been loaded by calling this first.
NSWindow *window = [self window];

// Set collection behavior to ensure the dialog appears in the current
// space rather than jumping to another space.
NSWindowCollectionBehavior wcb = window.collectionBehavior;
wcb |= NSWindowCollectionBehaviorMoveToActiveSpace;
[window setCollectionBehavior:wcb];

if (text && [text length] > 0)
[findBox setStringValue:text];

Expand Down