summaryrefslogtreecommitdiffstats
path: root/2020/info/23.md
diff options
context:
space:
mode:
authorSacha Chua <sacha@sachachua.com>2020-11-30 13:56:19 -0500
committerSacha Chua <sacha@sachachua.com>2020-11-30 13:56:19 -0500
commit89f7058c97d690c27cad9a67c7e3aeea67d2b2be (patch)
treed6b52817dddcc098bdee2a45ab48d1ba2cd80135 /2020/info/23.md
parent896d3a87e526b7df209c22ba787e50543c3f0176 (diff)
downloademacsconf-wiki-89f7058c97d690c27cad9a67c7e3aeea67d2b2be.tar.xz
emacsconf-wiki-89f7058c97d690c27cad9a67c7e3aeea67d2b2be.zip
Add rough dump
Diffstat (limited to '2020/info/23.md')
-rw-r--r--2020/info/23.md186
1 files changed, 186 insertions, 0 deletions
diff --git a/2020/info/23.md b/2020/info/23.md
index 5c2c963e..5f6f9ec1 100644
--- a/2020/info/23.md
+++ b/2020/info/23.md
@@ -11,3 +11,189 @@ In this talk, I will describe the current state of emacs-tree-sitter's
APIs and functionalities. I will also discuss areas that need
improvements and contribution from the community.
+<!-- from the pad --->
+
+- Actual start and end time (EST): Start: 2020-11-29T09.49.24; Q&A: 2020-11-29T10.13.56; End: 2020-11-29T10.31.44
+
+
+# Questions
+
+
+## Q20: can we integrate it with spacemacs python layer
+
+
+## Q19: The python mode example was pretty good. Is that something that one can use already?
+
+
+### Yes, already using it at work right now
+
+
+## Q18: Regarding Emacs integration, will it always need to be a foreign library or can it be included / linked directly in compilation?
+
+
+### Building a parser from source needs Node.js <https://tree-sitter.github.io/tree-sitter/creating-parsers#dependencies> so I don't know if it'll be in-tree and included at compile time
+
+
+### Core library dynamic module, would be better to be included in core Emacs eventually. Language definitions might be better distributed separately.
+
+
+## Q17: Is there a link to the slides?
+
+
+### Yes, will post in IRC later. (FIXME: add link here).
+
+
+### Slides: <https://ubolonton.org/slides/emacs-tree-sitter-emacsconf2020.pdf>
+
+
+## Q16: Are there any language major modes that have integrated already?
+
+
+### Not yet (answered during talk)
+
+
+### Typescript : discussing integration, not integrated yet
+
+
+## Q15: Is it possible to use tree-sitter for structural editing?
+
+
+### Covered by Q4 / Q8 / Q11.
+
+
+## Q14: Is there a folding mode for tree-sitter?
+
+
+### Not yet. There are multiple code folding frameworks inside Emacs, and it's better to integrate with these modes rather than writing something new entirely.
+
+
+### +1 Would be nice if it worked with outshine mode or similar
+
+
+## Q13: MaxCity on IRC asks: "That pop up M-x window. How do you get that?"
+
+
+### ivy-posframe most likely <https://github.com/tumashu/ivy-posframe/>. Or not. Cool!
+
+
+### Custom helm code
+
+
+## Q12: I'm new to the tree-sitter world. Is it easy to install/use it also on windows ? (I have to use winbloat at work)
+
+
+### The usual approach is hoping someone else made a precompiled version for you and download it. Otherwise you'll have to set up a development environment with mingw-msys or whatever.
+
+
+## Q11: Is it possible to use this for refactoring too?
+
+
+### For the kind of refactoring inside a buffer, it's very doable right now with some glue code. For more extensive refactoring where you want to touch all files in a project, there needs to be some kind of understanding of the language model system, how they are laid out in the filesystem&#x2026; even files that are not yet loaded into Emacs. That sounds like something a lot more extensive. Sounds like an IDE in Emacs.
+
+
+## Q10: Can language major-mode authors start taking advantage of this now? Or is it intended to be used as a minor-mode? +1
+
+
+### Minor mode depended on by the major modes
+
+
+## Q9: I'm completely new to tree-sitter, how do I use it as an end user? Is there an easy example config out there by the organizer or otherwise that shows standard usage with whatever programming language? Or are we not there yet?
+
+
+### Answering own question: Sounds like major mode maintainers need to integrate.
+
+
+### Syntax highlighting is pretty easy to activate <https://ubolonton.github.io/emacs-tree-sitter/getting-started/> - nice, tree-sitter-hl-mode looks easy
+
+
+### Need to add more examples to the documentation
+
+
+## Q8: (Following on from Q4) Could there be a standardised approach to coding automatic refactorings in the future? e.g. so that whichever language mode you are using, you could see a menu of available refactoring operations?
+
+
+### Not sure about this. Most refactoring operations are highly specific to a class of languages. Not one single approach for all the languages, but maybe one for object-oriented languages, one for Lisp-type languages, one for Javascript and Typescript&#x2026;
+
+
+### I meant the lisp and user interfaces being unified, not the implementations of the refactorings. But maybe it belongs in a separate mode on top. So you could have a defrefactor macro or similar.
+
+
+## Q7: How extensive will the compatibility be between highlighting grammars for Emacs and those for Vim/Neovim with Tree-sitter?
+
+
+### For the time being it looks like nvim-treesitter also uses the S-exp syntax for queries so it shouldn't be too hard. See <https://github.com/nvim-treesitter/nvim-treesitter/blob/master/queries/rust/highlights.scm>
+
+
+## Q6: Will it ever be possible to write tree-sitter grammars in a Lisp, or will JS be required?
+
+
+### The grammar part is written in JSON, you don't need to actually understand JS to write it. Using Lisp would merely give you a s-expression version, that wouldn't buy you much.
+
+- Ah, so all that is needed is (json-encode '(grammar &#x2026;))? Great!
+
+
+## Q5: Could you show the source that was matched by the parser in the debug view in addition to the grammar part matched?
+
+
+## Q4: Could this be used with packages like \`smartparens\` that aim to bring structrual editing to non-s-expression based languages? AST-based refactoring?
+
+
+### It is one of the goals, but not yet achieved.
+
+
+## Q3: Do you think tree-sitter would be useful for Org buffers? I can imagine it being used to keep a parsed AST of an Org buffer (e.g. like org-element's output) updated in real time.+1+1
+
+
+### An obstacle here is Org not having anything anywhere close to a formal grammar, so that would need to be corrected first.
+
+- <https://orgmode.org/worg/dev/org-element-api.html>
+
+- <https://orgmode.org/worg/dev/org-syntax.html>
+
+ - This is an informal description of it, not an actual grammar. Nevertheless, there's a few projects trying to codify a grammar. I'll dig up some links soonish.
+
+ - The element API is the formal grammar - canonic implementation. Org-syntax document is a draft of the text descrption of the grammar.
+
+ - Note: relevant mailing list discussion <https://orgmode.org/list/68dc1ea1-52e8-7d9e-fb2d-bcf08c111eca@intrepidus.pl/>
+
+
+### FIXME: Add link to a emacs-tree-sitter project/snippet for org-mode.
+
+- Not sure if it is what you have in mind, but there is <https://github.com/gagbo/tree-sitter-org>
+
+
+## Q2: Will elisp performance be more competitive with gccemacs enough to make tree-sitter in elisp more attractive? (+1)+1
+
+
+### The point of this project is to reuse other people's efforts, not rewriting them.
+
+
+### The garbage collection may still pose some problems and introduce GC latency.
+
+
+## Q1: Do you think that his package can be included into emacs/GNU ELPA?
+
+
+### Yes, it is just matter of paperwork.
+
+
+# Notes
+
+
+## Project description: emacs-tree-sitter is an Emacs Lisp binding for tree-sitter, an incremental parsing library.
+
+
+### <https://github.com/ubolonton/emacs-tree-sitter> (<- bindings)
+
+
+### <https://tree-sitter.github.io/tree-sitter/> (<- parser)
+
+
+## Regular expressions are not powerful enough.
+
+
+## LSP has high latency and is resource intensive, oft.
+
+
+## Extended video version will get uploaded eventually after the event. (FIXME: add link)
+