nvim-treesitter-context icon indicating copy to clipboard operation
nvim-treesitter-context copied to clipboard

Show code context

Results 61 nvim-treesitter-context issues
Sort by recently updated
recently updated
newest added

``` > nvim --version NVIM v0.7.2 Build type: Release LuaJIT 2.1.0-beta3 ``` Using `vim-plug`. Tried `TSContextEnable` and `TSContextToggle`. No errors, but nothing like the animation occurs when I scroll through...

bug
unable to reproduce

I use nvim as git difftool and because buffers are set to `nomodifiable` I get this kind of error: ``` Error executing vim.schedule lua callback: ...ugged/nvim-treesitter-context/lua/treesitter-context.lua:492: Buffer is not 'modifiable'...

Treesitter supports Dockerfile (`:TSInstall dockerfile`), and it would be nice to have the current build stage `FROM ... AS ...` as the floating context. I tried adding `'from'` or `'FROM'`...

This PR exposes the required API to implement https://github.com/ggandor/leap.nvim/issues/29 We don't have a documented public API, but the 2 functions added here can be considered stable. ``` -- Get the...

Tabstops (I use `\t` for indents) are shown as 8 in the context window, while I configure the code window to use `tabstop=4` ![image](https://user-images.githubusercontent.com/6235312/180650298-0a200a8a-86f7-4aeb-af0a-95273ce1a21a.png) Setting tabstop while the window is...

Add a help file such that it's searchable in nvim. Mainly so I can easily reference the TSContext functions when I need to. It'd obviously be pretty minimal, but it'd...

enhancement
good first issue
accepted

This restructures the query definitions, and breaks some stuff. I'm open to changes. - Queries are now grouped by language, and match exact node types. - Queries are categorized, and...

As of now its pretty impossible to drop duplicates based on node id. The reason being is if we match the following: ```lua patterns = { "else_clause", "if_statement", } ```...

bug

it not support vue

Hi folks! Currently the `MatchParen` highlight is not applied in the floating window. I'm happy to open a PR if anyone has any guidance as to how this might be...