Replies: 2 comments 11 replies
|
Totally agree with you here. We already had a similar discussion a while back (#75) and started doing the wiki, but @renerocksai and I were both rather busy with our jobs the last two quarters and doc has definitely not the main focus point for the few hours we were able to spare for working on TK. I am definitely in favor for a lighter and more comprehensive readme. I do not even think all options should be in there, only the minimal configurations (setup As you said, To make everything more easily manageable, I also think that the defaults options used in the |
|
@skovati , I started working on a big cleanup of the README, see the branch https://github.com/renerocksai/telekasten.nvim/tree/readme-cleanup. What do you think about it? |
Uh oh!
There was an error while loading. Please reload this page.
I recently created a few PRs with small new configuration option changes, and realized that there are four places where options are defined:
README.mdexamplesetup()call,README.mdconfiguration table,docs/telekasten.txtexamplesetup()call, and finally the actual vim:helpoptions. This has led to documentation fragmentation, e.g. theREADME.mdtable is missing options that exist in the:helpdocs.One possible solution is to keep the existing example
setup()call with defaults in theREADME.mdthat can act as a quick-start for new users, and then place all other configuration options indocs/telekasten.txt, which can be the more verbose, single source of truth for all possible options.tl;dr, maybe we should remove the config table in the
README.mdand the examplesetup()call indocs/telekasten.nvimto have a single source of documentation truth.All reactions