解决 notepad++ lua 无法显示 函数列表问题

C:\Users\xxx\AppData\Roaming\Notepad++\functionList.xml

在该文件的合适位置里添加以下2段代码

 

<association id="lua_function" langID="23" />

 

<!-- Basic lua parser for functionList.xml in Notepad++ 6.5.3 -->
<!-- See http://notepad-plus-plus.org/features/function-list.html -->
<parser id="lua_function" displayName="Lua" commentExpr="--.*?$">
    <!-- Basic lua table view, nested lua table not supported -->
    <classRange
        mainExpr="[.\w]+[\s]*=[\s]*\{"
        openSymbole="\{"
        closeSymbole="\}"
        displayMode="node">
        <className>
            <nameExpr expr="[.\w]+"/>
        </className>
        <function
            mainExpr="[.\w]+[\s]*=[\s]*['&quot;]?[\w]+['&quot;]?">
            <functionName>
                <funcNameExpr expr=".*"/>
            </functionName>
        </function>
    </classRange>
    <!-- Basic lua functions support -->
    <function 
        mainExpr="(function[\s]+[.\w]+(:[\w]+)?)|([.\w]+[\s]*=[\s]*function)"
        displayMode="$className->$functionName">
        <functionName>
            <nameExpr expr="((?<=function)[\s]+[.:\w]+)|(([.\w]+)(?=([\s]*=[\s]*function)))"/>
        </functionName>
        <className>
            <nameExpr expr="[.\w]+(?=:)"/>
        </className>
    </function>
</parser>


 

 

解决 notepad++ lua 无法显示 函数列表问题解决 notepad++ lua 无法显示 函数列表问题 大龙喵 发布了45 篇原创文章 · 获赞 1 · 访问量 4万+ 私信 关注
上一篇:Notepad++编辑器——Verilog、代码片段、直接编译


下一篇:使用 notepad++ 编辑器在行首、行尾添加字符