You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current outline is pretty lackluster:
As shown in the screenshot, it's not easy to tell overloads apart, and object fields and local variables add a lot of noise and make the outline harder to navigate.
Here are my suggestions on improving it:
allow the user to hide certain parts of the outline, eg. fields and local variables, perhaps using a simple config system like let g:nim#outline_hide_fields = 0 or let g:nim#outline_hide = ["fields", "localvars"]
show proc/iterator/template/macro signatures and var/let/const/field types
The text was updated successfully, but these errors were encountered:
The current outline is pretty lackluster:
As shown in the screenshot, it's not easy to tell overloads apart, and object fields and local variables add a lot of noise and make the outline harder to navigate.
Here are my suggestions on improving it:
let g:nim#outline_hide_fields = 0
orlet g:nim#outline_hide = ["fields", "localvars"]
The text was updated successfully, but these errors were encountered: