Steve Molitor
Steve Molitor
@vedang's instructions [here](https://github.com/jimeh/build-emacs-for-macos/issues/47#issuecomment-1149252994) worked perfectly for me 2 1/2 weeks ago, but now I'm getting the dreaded error about `libgccjit`: ``` configure: error: ELisp native compiler was requested, but libgccjit...
@sfraize Thanks - I also just saw the emacs-plus issue and patches. Looks like they patched the emacs configure script: - [emacs-plus libgccjit issue](https://github.com/d12frosted/homebrew-emacs-plus/issues/483) - [emacs-plus@29 patch](https://github.com/d12frosted/homebrew-emacs-plus/pull/492/files) They have a...
> @stevemolitor @sfraize A patch for the libgccjit 12.x homebrew formula was added in #75, which has been merged into master. This should resolve your libgccjit related issues. Thanks @jimeh...
What you propose makes sense to me also. Some of these cases have been fixed by #32. These two cases now indent two spaces on the blank line as expected:...
This is a tricky case. The `tsi-typescript--get-indent-for-current-line` function has three pieces of context: - the type of the current node at point - the type of the parent node -...
I've noticed this too. Tricky problem. Incidentally I originally thought this was a `tsi.el` bug but actually it's a `tree-sitter` bug: ```ts function f(z) { const { x: y =...
Ah you were exactly right re the parser versions thanks! I created a [tree-sitter-langs PR](https://github.com/emacs-tree-sitter/tree-sitter-langs/pull/91) to fix. First time for me working with git submodules we'll see if I did...
FYI my [tree-sitter-langs PR](https://github.com/emacs-tree-sitter/tree-sitter-langs/pull/91) updating TS and JS langs has merged. Good to see that emacs-tree-sitter is responsive to PRs.
> What about copy-paste? Is there a solution for when you select and copy text to get the value (and not the rendered label)? I can think of some goofy...
> We debounce already with CodeMirror, so is there any difference between what we do now and what we'd do with Draft.js? I guess I was worried about the round-tripping....