diff options
author | TJ DeVries <devries.timothyj@gmail.com> | 2021-05-28 08:24:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-28 17:24:48 +0200 |
commit | 43956dea55a49a847a0f2e5d9e0f48384cb34635 (patch) | |
tree | 673f3572cb43fab0f79302280bc03b6afc975bcd /src/nvim/api/vim.c | |
parent | 192ea01eddbc7508055f855f2afc4dd397d992b1 (diff) | |
download | rneovim-43956dea55a49a847a0f2e5d9e0f48384cb34635.tar.gz rneovim-43956dea55a49a847a0f2e5d9e0f48384cb34635.tar.bz2 rneovim-43956dea55a49a847a0f2e5d9e0f48384cb34635.zip |
lua: Add vim.opt and fix scopes of vim.o (#13479)
* lua: Add vim.opt
* fixup: cleaning
* fixup: comments
* ty clason
* fixup: comments
* this is the last commit. period.
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index e9a0b0df2e..a76cefe294 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -984,7 +984,7 @@ Dictionary nvim_get_all_options_info(Error *err) /// Resulting dictionary has keys: /// - name: Name of the option (like 'filetype') /// - shortname: Shortened name of the option (like 'ft') -/// - type: type of option ("string", "integer" or "boolean") +/// - type: type of option ("string", "number" or "boolean") /// - default: The default value for the option /// - was_set: Whether the option was set. /// |