TypeFox / yang-lsp

A Language Server for YANG
http://www.yang-central.org
Apache License 2.0
51 stars 13 forks source link

description tag should be added in auto-completion #222

Open FaizanFrolic opened 2 years ago

FaizanFrolic commented 2 years ago

It will be good if we add a "description" tag as well in auto-completion option

i.e. for example in case of leaf

leaf leaf-name {
            type type-name {

            }
}

to

leaf leaf-name {
            description "TODO: add description";
            type type-name {

            }
        }
dhuebner commented 2 years ago

@FaizanFrolic That would be easy to add I think.

This is also related: #212