Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added 'Replace next' and 'Replace all' to Find command in Script Editor #898

Merged
merged 7 commits into from
Feb 7, 2022

Commits on Jan 24, 2022

  1. Added 'Replace next' and 'Replace all' to Find command

    - Added 'Replace next' and 'Replace all' to Find command
    - Fixed 'Previous' button that would search for the next occurrence instead of the previous one
    - Improved UX
    - Fixed find command window losing its owner whenever the Script Editor would be closed
    melvingelbard committed Jan 24, 2022
    Configuration menu
    Copy the full SHA
    ff2deb2 View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.md

    melvingelbard committed Jan 24, 2022
    Configuration menu
    Copy the full SHA
    b55fd75 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2022

  1. Improved UX in FInd/Replace command

    - 'Find' window is now called 'Find/Replace'
    - Improved the user experience of using the 'Find/Replace' command (mainly 'Next' button is looking like it's focused to indicate what the action will be when pressing Enter on a textfield)
    - Fixed behaviour to work both on Windows and MacOS
    - Fixed 'Replace all'
    - Changed 'Replace next' by 'Replace/Find' for better UX
    melvingelbard committed Jan 28, 2022
    Configuration menu
    Copy the full SHA
    7ea7304 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2022

  1. Configuration menu
    Copy the full SHA
    65fb1e1 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2022

  1. Renamed "Find" to "Next" & improved 'Replace all'

    - Renamed "Find" to "Next" for consistency
    - Replace all now replace all the text at once. Ctrl/CMD + Z now undoes all the replacements at once, instead of one by one
    - Ignore case checkbox state is now saved when reopening the "Find/replace" window 
    - Fixed minor bug where hitting Ctrl/CMD + F on a tab would throw an Exception
    melvingelbard committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    424f611 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c520509 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2022

  1. Fixed 'undo' after 'Replace all'

    - Fixed 'undo' after 'Replace all' (it would undo one query at a time, now it undoes all at once)
    - Added label next to "Next" button in case 'Previous' or 'Next' doesn't find any matching query.
    - 'Replace all' does not match regex anymore (inputting '.' would have replaced all the characters in the text, now it only replaces all the occurrences of '.' in the text)
    melvingelbard committed Feb 4, 2022
    Configuration menu
    Copy the full SHA
    a9a60ea View commit details
    Browse the repository at this point in the history