A bit late, but only variables defined with the `const` keyword are shown in
the list:
```julia
const a::Int8 = 3
function f(x)
return 2x
end
```
Both `a` and `f` would appear.
Currently, global (and local) variable assignment are not identified by ctags
(the library that is listing the symbols by type on the left), but it could be
improved if there is a need for it (or if somebody wants to do it :D).
See the TODO list [here](https://github.com/universal-ctags/ctags/issues/2723)
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3341#issuecomment-1572179881
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3341/[email protected]>