Running a macro on all the open docs ?.
-
Hello,
Is there a way to run a macro on all open documents? Currently I have to open each document to run a macro which is a pain. I’ve tried multi-selecting the tabs but that doesn’t work.
thanks
jackyjoy -
Short answer is No, but the longer answer is that you could probably write a PythonScript or maybe a NppExec script that could turn the answer into a Yes (but that’s a longer answer).
If you have interest in that, post back.
-
@Alan-Kilborn Sure would like that ability.
Any plans?
Any help with work-arounds?Thanx for all you do!
-
The following script for the PythonScript plugin runs the same macro (called
DoNothing
) on all files open in either view of Notepad++.You would have to edit the script to call the name of your Macro, as listed in your Macro menu.
# encoding=utf-8 """in response to https://community.notepad-plus-plus.org/topic/21663/ Run a macro on each open file """ from Npp import notepad # store active tab in each View keepBufferID = notepad.getCurrentBufferID() docIndexes = [notepad.getCurrentDocIndex(v) for v in range(2)] for filename, bufferID, index, view in notepad.getFiles(): notepad.activateBufferID(bufferID) notepad.runMenuCommand("Macro", "DoNothing") # restore active tab in each View for v in range(2): notepad.activateIndex(v, docIndexes[v]) notepad.activateBufferID(keepBufferID)
-
P PeterJones referenced this topic on