Function: elixir-ts--treesit-anchor-grand-parent-bol

elixir-ts--treesit-anchor-grand-parent-bol is a byte-compiled function defined in elixir-ts-mode.el.gz.

Signature

(elixir-ts--treesit-anchor-grand-parent-bol N PARENT &rest _)

Documentation

Return the beginning of non-space characters for the parent node of PARENT.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/elixir-ts-mode.el.gz
(defun elixir-ts--treesit-anchor-grand-parent-bol (_n parent &rest _)
  "Return the beginning of non-space characters for the parent node of PARENT."
  (save-excursion
    (goto-char (treesit-node-start (treesit-node-parent parent)))
    (back-to-indentation)
    (point)))