Community
    • Login

    $(CURRENT_DIRECTORY) is np++ directory

    Scheduled Pinned Locked Moved General Discussion
    5 Posts 2 Posters 1.2k 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.
    • BGM CoderB Offline
      BGM Coder
      last edited by BGM Coder

      Whilst trying to configure a RUN command, I discovered that $(CURRENT DIRECTORY) does not actually decipher to the current file’s directory when using comspec.

      For example, npp comes with this (in shortcuts.xml):

          <Command name="Open current dir cmd" Ctrl="no" Alt="no" Shift="no" Key="0">cmd /K cd $(CURRENT_DIRECTORY)</Command>
      

      But if you run that command, it opens notepad++ directory.

      However, for explorer, it works fine:

          <Command name="Open containing folder" Ctrl="no" Alt="no" Shift="no" Key="0">explorer $(CURRENT_DIRECTORY)</Command>
      

      Maybe I’m missing something or I’ve got something misfconfigured somehow?

      Alan KilbornA 1 Reply Last reply Reply Quote 0
      • Alan KilbornA Offline
        Alan Kilborn @BGM Coder
        last edited by

        @BGM-Coder

        It’s hard to say conclusively from what you’ve provided, but if the tab in Notepad++ that is active when you invoke the cmd /K is on a different drive, I see the behavior you are talking about.

        I would try changing the cmd /K version of the command to:

        cmd /K cd /d $(CURRENT_DIRECTORY)

        The /d allows the drive to be changed when executing cd.
        See HERE for a nice reference.

        1 Reply Last reply Reply Quote 2
        • BGM CoderB Offline
          BGM Coder
          last edited by

          @Alan-Kilborn said in $(CURRENT_DIRECTORY) is np++ directory:

          cmd /K cd /d $(CURRENT_DIRECTORY)

          Thanks, Alan - that does work!

          I had been going by this list for cmd parameters, but for /d it had a funny description, so I never would have thought to use it as a switch for changing drives.

          Alan KilbornA 1 Reply Last reply Reply Quote 2
          • Alan KilbornA Offline
            Alan Kilborn @BGM Coder
            last edited by

            @BGM-Coder said in $(CURRENT_DIRECTORY) is np++ directory:

            I had been going by this list for cmd parameters

            That’s fine; note that that site refers to parameters for “cmd” only.

            The /d that matters here is a parameter to the “cd” command, NOT the “cmd” command.

            Just for general knowledge, the \K, however, IS a parameter to “cmd”.

            Anyway, good that it now works for you.

            1 Reply Last reply Reply Quote 2
            • BGM CoderB Offline
              BGM Coder
              last edited by

              Thanks! That clears things up for me. I’m a bit richer now!

              1 Reply Last reply Reply Quote 2

              Hello! It looks like you're interested in this conversation, but you don't have an account yet.

              Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

              With your input, this post could be even better 💗

              Register Login
              • First post
                Last post
              The Community of users of the Notepad++ text editor.
              Powered by NodeBB | Contributors