2

Мне всегда хотелось, чтобы в Notepad++ было сочетание клавиш для закрытия панели / окна «Результаты поиска», которое появляется, когда я выполняю одно из следующих действий:

  • Найти все во всех открытых документах
  • Найти все в текущем документе
  • Найти все (в нескольких файлах)

Там нет ни одного встроенного, как обсуждалось в этом вопросе, а также этого и этого ; F7 открывает панель или окно, но не закрывает его. Вторая ссылка на вопрос выше предполагает, что Esc закроет панель или окно, но это не работает для меня, по крайней мере, в Notepad++> = 6.

Есть ли способ создать горячую клавишу или сочетание клавиш, чтобы закрыть панель / окно "Результаты поиска"?

1 ответ1

1

Есть, используя 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: http://superuser.com/questions/700357/create-a-hotkey-keyboard-shortcut-to-close-the-notepad-find-results-window
; Also released at www.edcottrell.com/2014/01/11/toggle-find-results-window-notepad-hotkey/
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

; Turn F7 into a toggle for the Notepad++ search results window; currently it shows it, but doesn't hide it.
; The $ prevents this from firing itself
*$F7::
Open := 0
SetTitleMatchMode 2  ; AHK doesn't seem to recognize the window title otherwise
; See if Notepad++ is the active window or if the undocked results window (ahk_class #32770) is the active window
If WinActive("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++ !

Отредактировано, чтобы исправить ошибку при обнаружении непокрытого окна.

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .