diff options
author | Profpatsch <mail@profpatsch.de> | 2020-12-19T18·22+0100 |
---|---|---|
committer | Profpatsch <mail@profpatsch.de> | 2021-01-01T19·03+0000 |
commit | 806c281b3491b165d01be561f005dada24107363 (patch) | |
tree | 3cea1ceae3892dfa648a16c108aac1cfafcf4a07 /users/Profpatsch/emacs-tree-sitter-move/tmp.el | |
parent | c9b985e7bc20c7dc90f14f47f8709864b05c032f (diff) |
feat(users/Profpatsch): moving around via the tree-sitter parse tree r/2042
Has a little setup to get the cursor position and map it onto a tree sitter node. The current node is saved in a cursor variable, and a highlight overlay marks the range of the current node in the buffer. Change-Id: I0af56115f928732e993fbefe978a246ca7c757ee Reviewed-on: https://cl.tvl.fyi/c/depot/+/2258 Reviewed-by: lukegb <lukegb@tvl.fyi> Reviewed-by: tazjin <mail@tazj.in> Reviewed-by: Profpatsch <mail@profpatsch.de> Tested-by: BuildkiteCI
Diffstat (limited to 'users/Profpatsch/emacs-tree-sitter-move/tmp.el')
-rw-r--r-- | users/Profpatsch/emacs-tree-sitter-move/tmp.el | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/users/Profpatsch/emacs-tree-sitter-move/tmp.el b/users/Profpatsch/emacs-tree-sitter-move/tmp.el new file mode 100644 index 000000000000..dcd17aa5757f --- /dev/null +++ b/users/Profpatsch/emacs-tree-sitter-move/tmp.el @@ -0,0 +1,13 @@ +(tree-sitter-load + 'python + (format "%s/bin/python" + (getenv "TREE_SITTER_GRAMMAR_DIR"))) + +(setq tree-sitter-major-mode-language-alist + '((python-mode . python))) + + +(define-key evil-normal-state-map (kbd "C-<right>") #'tree-sitter-move-right) +;; (define-key evil-normal-state-map (kbd "C-<left>") 'sp-backward-parallel-sexp) +;; (define-key evil-normal-state-map (kbd "C-<down>") 'sp-down-sexp) +;; (define-key evil-normal-state-map (kbd "C-<up>") 'sp-backward-up-sexp) |