Edit: Я неправильно понял этот вопрос изначально и подумал, что он спрашивает, как закрыть окно результатов поиска. Основная часть моего ответа ниже касается окна результатов поиска. Для диалогового окна найти/заменить Маркс Томас опубликовал правильный ответ -Esc
будет делать трюк.
нет клавиш для закрытия окна Результаты поиска. Однако можно создать горячую клавишу, используя AutoHotKey. Следующий сценарий конвертировать F7
из открытого ярлыка на переключатель; он открывает его, если он еще не открыт, и закрывает его, если он есть.
вот этот скрипт:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Ed Cottrell's AutoHotKey script for toggling the "Find Results" pane/window in Notepad++
; Released under the MIT License (http://opensource.org/licenses/MIT)
; Version: 1.1
; Release Date: January 15, 2014
; Released on Superuser.com: /q/create-a-hotkey-keyboard-shortcut-to-close-the-notepad-find-results-window-82322/"Notepad++")
{
; If the results pane is open, close it
; Button1 is the class name for the title bar and close button of the results pane when docked
ControlGet, OutputVar, Visible,, Button1, Notepad++
if ErrorLevel = 0
{
If OutputVar > 0
{
; Found it docked
Open := 1
; Get the size and coordinates of the title bar and button
ControlGetPos, X, Y, Width, Height, Button1
; Set the coordinates of the close button
X := Width - 9
Y := 5
; Send a click
ControlClick, Button1,,,,, NA x%X% y%Y%
}
}
}
; If it is undocked, use ahk_class #32770
else If WinExist("Find result ahk_class #32770")
{
; Found it undocked
Open := 1
; Close it
WinClose
}
; It's not open, so open it
if Open = 0
{
SendInput {F7}
}
return
Я надеюсь, что это поможет всем, кто любит Notepad++
!
редактировать исправить ошибку в обнаружении отстыкованного окна.