From 0d777338e21e2178c83efbbedd54f1ccf7396b8d Mon Sep 17 00:00:00 2001 From: Ekopalypse Date: Tue, 31 Dec 2024 13:57:07 +0100 Subject: [PATCH] remve TextFX from docs --- docs/source/notepad.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/notepad.rst b/docs/source/notepad.rst index 27546ff3..09f687ea 100644 --- a/docs/source/notepad.rst +++ b/docs/source/notepad.rst @@ -469,7 +469,7 @@ Notepad++ Object .. method:: notepad.runMenuCommand(menuName, menuOption[, refreshCache]) -> bool Runs a command from the menus. - For built-in menus use notepad.menuCommand(), for non built-in menus (e.g. TextFX and macros you've defined), + For most built-in menus use notepad.menuCommand(), but for menus that are created dynamically (e.g. the macro menu), use ``notepad.runMenuCommand(menuName, menuOption)``. For other plugin commands (in the plugin menu), use ``notepad.runPluginCommand(pluginName, menuOption)_`` @@ -483,15 +483,15 @@ Notepad++ Object e.g.:: - notepad.runMenuCommand('TextFX Edit', 'Delete Blank Lines') + notepad.runMenuCommand("MIME Tools", "About") .. method:: notepad.runPluginCommand(pluginName, menuOption[, refreshCache]) Runs a command from the plugin menu. Use to run direct commands from the Plugins menu. - To call TextFX or other menu functions, either use ``notepad.menuCommand(menuCommand)_`` (for Notepad++ menu commands), - or ``notepad.runMenuCommand(menuName, menuOption)_`` for TextFX or non standard menus (such as macro names). + To call other menu functions, either use ``notepad.menuCommand(menuCommand)_``, + or ``notepad.runMenuCommand(menuName, menuOption)_`` for menus that are created dynamically (e.g. the macro menu). Note that menuOption can be a submenu in a plugin's menu. So::