$(CURRENT_DIRECTORY) is np++ directory
-
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?
-
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 /Kis on a different drive, I see the behavior you are talking about.I would try changing the
cmd /Kversion of the command to:cmd /K cd /d $(CURRENT_DIRECTORY)The
/dallows the drive to be changed when executingcd.
See HERE for a nice reference. -
@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.
-
@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
/dthat 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.
-
Thanks! That clears things up for me. I’m a bit richer now!
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