• Login
Community
  • Login

Double Click in find results does not open and highlight

Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
11 Posts 2 Posters 972 Views
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • E
    Ekopalypse @joemir3
    last edited by Apr 29, 2020, 10:04 PM

    @joemir3

    So if I understand you correctly your problem is that
    a double click in the “find result” window does not open the file
    and highlight the searched word anymore, correct?
    If so, this is still working for me.

    Notepad++ v7.8.5   (64-bit)
    Build time : Mar  3 2020 - 17:39:56
    Path : D:\...\notepad++.exe
    Admin mode : OFF
    Local Conf mode : ON
    OS Name : Windows 7 Professional (64-bit) 
    OS Build : 7601.24544
    Plugins : ... 
    

    What you can give it a try is to
    stop all npp instances
    rename the config.xml from C:\Users\310237620\Desktop\notepaddplus
    and start npp.
    A new fresh default config.xml will be created on startup,
    means also previous changes are lost.

    1 Reply Last reply Reply Quote 1
    • J
      joemir3
      last edited by May 20, 2020, 8:50 PM

      @Ekopalypse
      Thank you for the reply -
      I did what you suggested with no success.
      I did just upgrade to 7.8.6.
      Interesting observations it does work as expected if I do not use macros. If I remove the “shortcuts” file with self made macros it does not work.
      Once I add the macros, the find results from these macros do not open the file.
      If I remove the file with the self made macros restart npp… all work as expected.

      1 Reply Last reply Reply Quote 1
      • J
        joemir3
        last edited by May 20, 2020, 8:55 PM

        @joemir3 said in Double Click in find results does not open and highlight:

        Interesting observations it does work as expected if I do not use macros. If I remove the “shortcuts” file with self made macros it DOES work.

        E 1 Reply Last reply May 20, 2020, 9:17 PM Reply Quote 0
        • E
          Ekopalypse @joemir3
          last edited by May 20, 2020, 9:17 PM

          @joemir3

          Could it be that the shortcuts file has been corrupted?
          If you open it within npp do see it gets colored correctly?
          If you can, install XML Tools plugin then you can check
          if this is still a valid xml or not.

          1 Reply Last reply Reply Quote 0
          • J
            joemir3
            last edited by May 20, 2020, 10:15 PM

            @Ekopalypse
            It is something to do with the macros. If I remove all I created it works as expected by doing a find in files search with regex.
            The macro is using regex to find specific patterns in a pre-determined directory.
            The example below I created is “collisions”. The macro is cntl-shift-f for find in files with the regex and all works as expect, finds the pattern and display in a pop-up “find in files” results- BUT a double click on a result does not open the file.

            <NotepadPlus>
            <InternalCommands />
            <Macros>
            <Macro name=“Trim Trailing Space and Save” Ctrl=“no” Alt=“yes” Shift=“yes” Key=“83”>
            <Action type=“2” message=“0” wParam=“42024” lParam=“0” sParam=“” />
            <Action type=“2” message=“0” wParam=“41006” lParam=“0” sParam=“” />
            </Macro>
            <Macro name=“Collisions” Ctrl=“no” Alt=“no” Shift=“no” Key=“0”>
            <Action type=“3” message=“1700” wParam=“0” lParam=“0” sParam=“” />
            <Action type=“3” message=“1601” wParam=“0” lParam=“0” sParam=“\d+[^0]\scollisions,” />
            <Action type=“3” message=“1625” wParam=“0” lParam=“2” sParam=“” />
            <Action type=“3” message=“1653” wParam=“0” lParam=“0” sParam=“C:\NW-Review” />
            <Action type=“3” message=“1652” wParam=“0” lParam=“0” sParam=“.” />
            <Action type=“3” message=“1702” wParam=“0” lParam=“32” sParam=“” />
            <Action type=“3” message=“1701” wParam=“0” lParam=“1656” sParam=“” />
            </Macro>
            </Macros>
            <UserDefinedCommands>
            <Command name=“Get PHP help” Ctrl=“no” Alt=“yes” Shift=“no” Key=“112”>http://www.php.net/$(CURRENT_WORD)</Command>
            <Command name=“Wikipedia Search” Ctrl=“no” Alt=“yes” Shift=“no” Key=“114”>https://en.wikipedia.org/wiki/Special:Search?search=$(CURRENT_WORD)</Command>
            <Command name=“Open file in another instance” Ctrl=“no” Alt=“yes” Shift=“no” Key=“117”>$(NPP_FULL_FILE_PATH) $(CURRENT_WORD) -nosession -multiInst</Command>
            </UserDefinedCommands>
            <PluginCommands />
            <ScintillaKeys />
            </NotepadPlus>

            E 1 Reply Last reply May 20, 2020, 10:38 PM Reply Quote 0
            • E
              Ekopalypse @joemir3
              last edited by May 20, 2020, 10:38 PM

              @joemir3

              From xml point of view I don’t see an issue.
              Your data do have “ and ” instead of "
              but I assume those have been changed while posting.
              Can you double check?

              J 1 Reply Last reply May 20, 2020, 10:49 PM Reply Quote 1
              • J
                joemir3 @Ekopalypse
                last edited by May 20, 2020, 10:49 PM

                @Ekopalypse
                When creating the macro, I do not use any quote or other characters.
                Just using this \d+[^0]\scollisions,.
                Steps I used to create the macro is the following.
                Macro - start recording
                cntrl-shift-f
                \d+[^0]\scollisions,
                then hit find all
                stop recording macro
                save current recorded macro.

                E 1 Reply Last reply May 20, 2020, 10:55 PM Reply Quote 0
                • E
                  Ekopalypse @joemir3
                  last edited by May 20, 2020, 10:55 PM

                  @joemir3

                  I see, but your posting contains those “html” double quotes and your shortcuts.xml should contain only real
                  double quotes. Is this the case?
                  Or asked the other way around, did you ever edited shortcuts.xml by hand?

                  1 Reply Last reply Reply Quote 0
                  • J
                    joemir3
                    last edited by May 21, 2020, 1:49 PM

                    @Ekopalypse
                    When creating the Macros I used the steps above only and no editing by hand.

                    1 Reply Last reply Reply Quote 1
                    • E
                      Ekopalypse
                      last edited by May 22, 2020, 9:03 PM

                      I copied your macro, restarted Npp and did some tests and
                      those worked for me. Sorry, not sure what breaks it on your side.

                      1 Reply Last reply Reply Quote 0
                      • First post
                        Last post
                      The Community of users of the Notepad++ text editor.
                      Powered by NodeBB | Contributors