diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2023-06-06 08:23:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-06 08:23:20 -0700 |
commit | c48b1421af28d0317c807bca00c7e2fff97d9ad0 (patch) | |
tree | 6737f131d5dc773318ee9816ca7b7b92af4702ea /runtime/doc | |
parent | 175e5c8b96fe0756040fcb31f46d9c97b3957776 (diff) | |
download | rneovim-c48b1421af28d0317c807bca00c7e2fff97d9ad0.tar.gz rneovim-c48b1421af28d0317c807bca00c7e2fff97d9ad0.tar.bz2 rneovim-c48b1421af28d0317c807bca00c7e2fff97d9ad0.zip |
refactor!: rename "playground" => "dev" #23919
Problem:
"playground" is new jargon that overlaps with existing concepts:
"dev" (`:help dev`) and "view" (also "scratch" `:help scratch-buffer`) .
Solution:
We should consistently use "dev" as the namespace for where "developer
tools" live. For purposes of a "throwaway sandbox object", we can use
the name "view".
- Rename `TSPlayground` => `TSView`
- Rename `playground.lua` => `dev.lua`
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/news.txt | 2 | ||||
-rw-r--r-- | runtime/doc/treesitter.txt | 8 |
2 files changed, 2 insertions, 8 deletions
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt index 0182605b1b..537a737dc8 100644 --- a/runtime/doc/news.txt +++ b/runtime/doc/news.txt @@ -36,6 +36,8 @@ The following changes may require adaptations in user config or plugins. • |LspRequest| autocmd was promoted from a |User| autocmd to a first class citizen. +• Renamed `vim.treesitter.playground` to `vim.treesitter.dev`. + ============================================================================== ADDED FEATURES *news-added* diff --git a/runtime/doc/treesitter.txt b/runtime/doc/treesitter.txt index 64b4730eee..28ab3ecd8e 100644 --- a/runtime/doc/treesitter.txt +++ b/runtime/doc/treesitter.txt @@ -1216,12 +1216,4 @@ LanguageTree:trees({self}) *LanguageTree:trees()* Parameters: ~ • {self} - -============================================================================== -Lua module: vim.treesitter.playground *lua-treesitter-playground* - -inspect_tree({opts}) *vim.treesitter.playground.inspect_tree()* - Parameters: ~ - • {opts} InspectTreeOpts - vim:tw=78:ts=8:sw=4:sts=4:et:ft=help:norl: |