diff options
author | Gregory Anders <greg@gpanders.com> | 2022-04-10 19:15:16 -0600 |
---|---|---|
committer | Gregory Anders <greg@gpanders.com> | 2022-04-10 20:45:17 -0600 |
commit | 379067d0386083b3f9531062d9f3a83a24bff745 (patch) | |
tree | 23e7196c8a8f36c258c904c8279a9d6b0e994611 | |
parent | f94f75dc0512def7fbfdfe100eea2dab3352d61f (diff) | |
download | rneovim-379067d0386083b3f9531062d9f3a83a24bff745.tar.gz rneovim-379067d0386083b3f9531062d9f3a83a24bff745.tar.bz2 rneovim-379067d0386083b3f9531062d9f3a83a24bff745.zip |
docs: update dev-api to include "create"
-rw-r--r-- | runtime/doc/develop.txt | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/runtime/doc/develop.txt b/runtime/doc/develop.txt index cc146fcf6e..b31ac47bda 100644 --- a/runtime/doc/develop.txt +++ b/runtime/doc/develop.txt @@ -243,12 +243,13 @@ If the function acts on an object then {thing} is the name of that object with a {thing} that groups functions under a common concept). Use existing common {action} names if possible: - add Append to, or insert into, a collection - del Delete a thing (or group of things) - exec Execute code - get Get a thing (or group of things by query) - list Get all things - set Set a thing (or group of things) + add Append to, or insert into, a collection + create Create a new thing + del Delete a thing (or group of things) + exec Execute code + get Get a thing (or group of things by query) + list Get all things + set Set a thing (or group of things) Use consistent names for {thing} in all API functions. E.g. a buffer is called "buf" everywhere, not "buffer" in some places and "buf" in others. |