emacs-tree-sitter / ts-fold

Code-folding using tree-sitter
GNU General Public License v3.0
213 stars 28 forks source link
emacs folding tree-sitter

License: GPL v3 JCS-ELPA

ts-fold

Code-folding using tree-sitter

CI

ts-fold builds on top of elisp-tree-sitter to provide code folding based on the tree-sitter syntax tree.

Table of Contents

💾 Installation

🔍 Method 1. with straight.el and use-package:

(use-package ts-fold
  :straight (ts-fold :type git :host github :repo "emacs-tree-sitter/ts-fold"))

🔍 Method 2. Manual

git clone https://github.com/emacs-tree-sitter/ts-fold /path/to/lib

then in Emacs:

(add-to-list 'load-path "/path/to/lib")
(require 'ts-fold)

or

(use-package ts-fold
  :load-path "/path/to/lib")

🖥 Usage

📇 Commands

The following are the functions provided by ts-fold-mode

Commands for enabling ts-fold:

Commands Description
ts-fold-mode enable ts-fold-mode in the current buffer.
global-ts-fold-mode enable ts-fold-mode whenever tree-sitter is turned on and the major mode is supported by ts-fold.
ts-fold-indicators-mode enable ts-fold with indicators in the current buffer. See plugins section.
global-ts-fold-indicators-mode enable ts-fold with indicators globally. See plugins section.
ts-fold-line-comment-mode enable line comment folding.

Commands for using ts-fold.

Commands Description
ts-fold-close fold the current syntax node.
ts-fold-open open the outermost fold of the current syntax node. Keep the sub-folds close.
ts-fold-open-recursively open all folds inside the current syntax node.
ts-fold-close-all close all foldable syntax nodes in the current buffer.
ts-fold-open-all open all folded syntax nodes in the current buffer.
ts-fold-toggle toggle the syntax node at `point'.

If evil mode is loaded, then these commands are also added to the evil folding list.

🔨 Supported languages

⚠️ Please sort these two lists alphabetically!

These languages are fairly complete:

These languages are in development:

P.S. We don't list trivial languages here. e.g., LLVM IR (.ll) files, etc. Please see the variable ts-fold-range-alist for the fully supported list!

📝 Customization

Although ts-fold aims to have good folding out of the box for all supported definitions, people will indubitably have their own preferences or desired functionality. The following section outlines how to add your own folding definitions and folding functions to make ts-fold work for you. If there are any improvements you find for existing or new languages, please do raise a PR so that others may benefit from better folding in the future!

⚪ Folding on new nodes

Ts-fold defines all its folding definitions in the variable ts-fold-range-alist which is an alist with the key of the alist being the mode and the value being another alist of fold definitions.

;; Example of ts-fold-range-alist's structure
'((c-mode     . c-folding-definitions) ;; <language>-folding-definitions is structured as shown below
  (css-mode   . css-folding-definitions)
  (go-mode    . go-folding-definitions)
  (scala-mode . scala-folding-definitions)
  ...)

;; Examle of a folding definition alist
(setq css-folding-definitions
    (block   . ts-fold-range-seq)
    (comment . ts-fold-range-c-like-comment))

So you can select whatever node that you want to fold on it.

To find what node you'll want to fold closed, refer to the tree-sitter documentation about viewing nodes. tree-sitter-debug and tree-sitter-query-builder are both very useful for this.

For the folding functions, ts-fold provides some default

type Dog interface {
    Bark() (string, error)
    Beg() (bool, error)
}

/* | Note: The tree-sitter node starts at the word interface, not at the '{'.
 * | '(interface_type . (lambda (node offset)
 * |                      (ts-fold-range-markers node offset "{" "}")))
 * V
 */

type Dog interface {...}

Now that you know what kinds of folds are easily available in ts-fold, you can go ahead and add new fold definitions to ts-fold-range-alist and be good to go!

❔ Example

Let's look at a quick example of adding a new folding definition. Let's say you want to add folding to go-mode's field_declaration_list. The folding definition that is needed will be '(field_declaration_list . ts-fold-range-seq). To add this to the ts-fold-range-alist, you can do something like the following.

(push '(field_declaration_list . ts-fold-range-seq) (alist-get 'go-mode ts-fold-range-alist))

Now the new fold definition should be usable by ts-fold!

↔ Offset

With the functions listed above you'll be able to define most folding behavior that you'll want for most languages. However, sometimes you'll have a language where the delimiter is a word instead of a single character bracket and you want to offset your fold by a certain amount to accommodate it. That's where offsets come in. When adding a fold definition to a a language's fold alist, you can either provide the folding function directly as you've seen so far:

'(block . ts-fold-range-seq)

Or you can provide the folding function with an offset:

'(block . (ts-fold-range-seq 1 -3))

When a range is provided, it provides extra room on the ends of a fold. The way this works is most easily shown using an example. Lets say we want to write a fold for bash's for...do...done construct to look something like this:

for i in 1 2 3 4 5
do
   echo "Welcome $i times"
done

# |
# | '(do_group . <some folding function>)
# V

for i in 1 2 3 4 5
do...done

The do...done block is represented in tree-sitter as the node named do_group. However, if we just use '(do_group . ts-fold-range-seq), then we'll get results like the following:

for i in 1 2 3 4 5
d...e

which is hard to read. Instead, we can use the definition '(do_group . (ts-fold-range-seq 1 -3)) to offset the fold a bit to get our desired result!

🔍 Writing new fold functions

If the built in functions don't fit your needs, you can write your own fold parser! Folding functions take two parameters:

Then the function needs to return a position range for the fold overlay in the form '(start-of-fold . end-of-fold). If nil is returned instead of a range, then no fold is created. This can be useful if you want to add extra conditional logic onto your fold.

As an example of a folding function, take a look at the definition of the basic ts-fold-range-seq.

(defun ts-fold-range-seq (node offset)
  "..."
  (let ((beg (1+ (tsc-node-start-position node)))  ; node beginning position
        (end (1- (tsc-node-end-position node))))   ; node end position
    (ts-fold--cons-add (cons beg end) offset)))    ; return fold range

🔌 Plugins

ts-fold comes with a couple of useful little additions that can be used or turned off as desired.

⚖ Indicators Mode

This plugin adds interactive visual markers in the gutter that show where folds can be made. They can be clicked on to fold or unfold given nodes.

💾 Installation

ts-fold-indicator-mode is loaded when ts-fold-mode is and the functionality should be auto-loaded in, however if that's not working then you may want to explicitly declare the package in in your config.

🖥 Usage

You can then enable this manually by doing either of the following:

M-x ts-fold-indicators-mode

M-x global-ts-fold-indicators-mode

Please note that turning on ts-fold-indicators-mode automatically turns on ts-fold-mode as well. Though, turning off ts-fold-indicators-mode does not turn off ts-fold-mode

📝 Summary

This plugin automatically extracts summary from the comment/document string, so you can have a nice way to peek at what's inside the fold range.

🖥 Usage

📝 Customization

Just like with fold definitions, you can create your own summary definitions. Summary definitions are defined in ts-fold-summary-parsers-alist and has one summary function per major mode '(java-mode . fold-summary-function). The summary function takes in the doc string which is all the text from a doc node and then returns a string to be displayed in its stead. Unlike with the folding functions, there aren't a set of general summary functions to fall back on. However, there are lots of examples and helper functions present in ts-fold-summary.el. Let's look at one example here.

(defun ts-fold-summary-javadoc (doc-str)
  "Extract summary from DOC-STR in Javadoc."
  (ts-fold-summary--generic doc-str "*")) ;; strip the '*' and returns the first line

As can be seen ts-fold-summary--generic is a very helpful function since it removes the provided delimiter and returns the first line. often this will be enough.

🌫 Line-Comment folding

This plugin makes line comment into foldable range.

🖥 Usage

  M-x ts-fold-line-comment-mode

🔰 Contribute

PRs Welcome Elisp styleguide Donate on paypal Become a patron

Enable tree-sitter-mode first, then tree-sitter-query-builder is useful to test out queries that determine what syntax nodes should be foldable and how to fold them. emacs-tree-sitter has an excellent documentation on how to write tree-sitter queries.

🔬 Development

To run the test locally, you will need the following tools:

Install all dependencies and development dependencies:

$ eask install-deps --dev

To test the package's installation:

$ eask package
$ eask install

To test compilation:

$ eask compile

🪧 The following steps are optional, but we recommend you follow these lint results!

The built-in checkdoc linter:

$ eask lint checkdoc

The standard package linter:

$ eask lint package

📝 P.S. For more information, find the Eask manual at https://emacs-eask.github.io/.

❓ How to add a folding parser?

When adding a new folding parser, add the folding definition function to ts-fold.el itself near where the other range functions live and then add the parser to ts-fold-parsers.el file. Finally, if you are adding support for a new language, remember to add it to the ts-fold-range-alist variable.

When creating a new parser, name it ts-fold-parsers-<language>.

When creating a new folding function, name it ts-fold-range-<language>-<feature> or something similar.

🔍 Where can I look for tree-sitter node?

Here are some techniques for finding your desired nodes in tree-sitter.

To look for the correct node you have three options:

⚠️ Warning

Make sure you look into the correct repository. Repositories are managed under tree-sitter-langs's using git submodule. Some tree-sitter module aren't using the latest version!

❓ How to create a summary parser?

ts-fold-summary.el module is used to extract and display a short description from the comment/docstring.

To create a summary parser, you just have to create a function that could extract comment syntax correctly then register this function to ts-fold-summary-parsers-alist defined in ts-fold-summary.el. The display and shortening will be handled by the module itself.

Functions should be named with the prefix ts-fold-summary- followed by style name. For example, to create a summary parser for Javadoc style, then it should be named ts-fold-summary-javadoc.

⚜️ License

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.

See LICENSE for details.