Code Monkey home page Code Monkey logo

nvim-treesitter-context's Introduction

nvim-treesitter-context

Lightweight alternative to context.vim implemented with nvim-treesitter.

Requirements

Neovim >= v0.8.2

Note: if you need support for Neovim 0.6.x please use the tag compat/0.6.

Install

via vim-plug

Plug 'nvim-treesitter/nvim-treesitter'
Plug 'nvim-treesitter/nvim-treesitter-context'

via packer

use 'nvim-treesitter/nvim-treesitter'
use 'nvim-treesitter/nvim-treesitter-context'

Screenshot

theme

Supported languages

  • bash
  • c
  • c_sharp
  • cpp
  • dart
  • elixir
  • go
  • java
  • javascript
  • json
  • latex
  • lua
  • markdown
  • php
  • python
  • r
  • ruby
  • rust
  • scala
  • teal
  • toml
  • tsx
  • typescript
  • verilog
  • vim
  • yaml
  • ada
  • agda
  • arduino
  • astro
  • beancount
  • bibtex
  • bicep
  • blueprint
  • capnp
  • chatito
  • clojure
  • cmake
  • commonlisp
  • cooklang
  • cpon
  • css
  • cuda
  • d
  • devicetree
  • dhall
  • dockerfile
  • dot
  • ebnf
  • ecma
  • eex
  • elm
  • elsa
  • elvish
  • embedded_template
  • erlang
  • fennel
  • fish
  • foam
  • fsh
  • func
  • fusion
  • gdscript
  • git_rebase
  • gleam
  • glimmer
  • glsl
  • godot_resource
  • gomod
  • gosum
  • gowork
  • graphql
  • hack
  • haskell
  • hcl
  • heex
  • hjson
  • hlsl
  • hocon
  • html
  • html_tags
  • htmldjango
  • http
  • ini
  • jq
  • jsdoc
  • json5
  • jsonc
  • jsonnet
  • jsx
  • julia
  • kdl
  • kotlin
  • lalrpop
  • ledger
  • llvm
  • m68k
  • matlab
  • menhir
  • mermaid
  • meson
  • nickel
  • nix
  • ocaml
  • ocaml_interface
  • ocamllex
  • pascal
  • perl
  • phpdoc
  • pioasm
  • po
  • poe_filter
  • prisma
  • proto
  • prql
  • pug
  • ql
  • qmldir
  • qmljs
  • query
  • racket
  • rasi
  • rego
  • rnoweb
  • ron
  • rst
  • scheme
  • scss
  • slint
  • smali
  • smithy
  • solidity
  • sparql
  • sql
  • starlark
  • supercollider
  • surface
  • svelte
  • swift
  • sxhkdrc
  • t32
  • terraform
  • thrift
  • tiger
  • tlaplus
  • todotxt
  • turtle
  • twig
  • ungrammar
  • v
  • vala
  • vhs
  • vue
  • wgsl
  • wgsl_bevy
  • yang
  • yuck
  • zig

Configuration

(Default values are shown below)

require'treesitter-context'.setup{
  enable = true, -- Enable this plugin (Can be enabled/disabled later via commands)
  max_lines = 0, -- How many lines the window should span. Values <= 0 mean no limit.
  min_window_height = 0, -- Minimum editor window height to enable context. Values <= 0 mean no limit.
  line_numbers = true,
  multiline_threshold = 20, -- Maximum number of lines to collapse for a single context line
  trim_scope = 'outer', -- Which context lines to discard if `max_lines` is exceeded. Choices: 'inner', 'outer'
  mode = 'cursor',  -- Line used to calculate context. Choices: 'cursor', 'topline'
  -- Separator between context and content. Should be a single character string, like '-'.
  -- When separator is set, the context will only show up when there are at least 2 lines above cursorline.
  separator = nil,
  zindex = 20, -- The Z-index of the context window
}

Commands

TSContextEnable, TSContextDisable and TSContextToggle.

Appearance

Use the highlight group TreesitterContext to change the colors of the context. Per default it links to NormalFloat.

Use the highlight group TreesitterContextLineNumber to change the colors of the context line numbers if line_numbers is set. Per default it links to LineNr.

Use the highlight group TreesitterContextBottom to change the highlight of the last line of the context window. By default it links to NONE. However, you can use this to create a border by applying an underline highlight, e.g:

hi TreesitterContextBottom gui=underline guisp=Grey

Adding support for other languages

To add support for another language, simply add a context.scm file under queries/[LANG].

Queries specify the @context capture which specifies the first line of a node will be used for the context.

Here is a basic example for C:

(function_definition) @context
(for_statement) @context
(if_statement) @context
(while_statement) @context
(do_statement) @context

You can easily look at a node names of a tree using InspectTree in Nvim 0.9.

Additionally an optional @context.end capture can also be specified. When provided, the text from the start of the @context capture to the start of @context.end capture (exclusive) will be used for the context and joined into a single line.

Here's what that looks like for C:

(if_statement consequence: (_ (_) @context.end)) @context

This query specifies that everything from the if keyword up-to the first statement (exclusive) should be used for the context. This is useful when an if-statement spans multiple lines.

nvim-treesitter-context's People

Contributors

romgrk avatar lewis6991 avatar oberblastmeister avatar seandewar avatar uchars avatar saecki avatar syphar avatar benjaminbrownlee avatar madlep avatar lhkipp avatar luukvbaal avatar rwblokzijl avatar stevearc avatar topaxi avatar brokenbyte avatar ironhouzi avatar mfdorst avatar vegerot avatar abstract-everything avatar lf- avatar moliva avatar mhanberg avatar foamscience avatar shraymonks avatar robertbrunhage avatar rbjorklin avatar ruifm avatar rlabeyrie avatar sebcode avatar stevearc-stripe avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.