Menno Vogels
Menno Vogels
See Notepad++ GitHub issue [5945](https://github.com/notepad-plus-plus/notepad-plus-plus/issues/5945) and Community topic [18458](https://community.notepad-plus-plus.org/topic/18458/display-markdown-outline-view-through-functionlist).
Duplicate/related #1232, #1657, #1861, #2910, #3095 and Community Topics [13286](https://notepad-plus-plus.org/community/topic/13286/functionlist-doesn-t-recognise-a-c-function-with-comment) and [13468](https://notepad-plus-plus.org/community/topic/13468/function-list-issue).
@indrajitmajumdar not the same problem i.e. comment embedded in function header. You're probably using an older parser as your sample function appears in my FunctionList (using Notepad++ 7.6.3).
Might be a Scintilla problem as it also occurs in SciTE. Notepad++ v3.9.2  SciTE v3.6.6 
Duplicate of #1861. > Can the newline requirement be supressed? AFAIK it can not be suppressed.
@AleWin32 it can not be solved by modifying the regular expression of the parser. The problem occurs due to a fault in the way Function List determines the boundary of...
The C parser is a `function`-only parser and the Java parser is a `classRange`-only parser. A `function` parser tries to match the specified function expression throughout the complete text of...