Notepad++ plugin:
function list

Function list is a plugin for notepad++ which lists the functions and arguments on files of type python, javascript and php. Depending on the action selected by clicking on the name of the function we go to the declaration or insert the name and optionally its arguments.

Installation

Unzip the file and save the dll in the plugins directory of notepad++.

Download

fnList.rar

7 thoughts on “Notepad++ plugin: function list

  1. Hello,

    I like your new design.
    The problem using string as argument still exists in the new version.

    If I press the parse button twice then I get 2 times the same Function List and I cannot delete it.

    You should keep the function list being able to show multiple files as it is now. Just do not let it have duplicates.


    • hi, i’ve uploaded the new version with that bug corrected and a viewer for docstrings in php and python files, thanks for your feedback


  2. Nice Work!!
    The Function List does not work if the argument in the function is text.


    • Hi, can you send me a simple of function where the plugin fails for fix the error? Thanks in advance for your help


      • Hi,

        e.g when the function has the following format, it is not imported into the function list:
        def foo(a, b = 5, c=’test’, d = True):

        if the same function is declared as:
        def foo(a, c, b = 5, d = True):
        then the Function List works.


Leave a Reply

Your email address will not be published. Required fields are marked *