tpeacock19
tpeacock19
Actually the only other potential suggestion would be around saving bookmarks. Currently, I have a command that runs through all my open tabs and saves them as Burly bookmarks, overwriting...
Also instead of opening a new issue i'll mention this here `burly-kill-buffer-url` should have a prompt after the interactive keyword. Currently it just shows up as blank in the minibuffer...
> Add a new tab and/or tabs bookmark type that would explicitly bookmark tabs rather than windows. This is essentially restricting the hook/function you've just created to a bookmark type,...
> I suppose that, if we want to have a command to save and restore multiple tabs, an explicit tabs bookmark type will be necessary, because it will have to...
Yes that's right, I think it would suffice.
I actually had just moved to that branch yesterday after having used the previous tab-bar branch. It works very well and is much simpler than our earlier discussions. I especially...
A single bookmark does sound interesting, but I was thinking individually. So there could be a variable that contains the symbol `all` or a list of bookmarks to be auto-saved....
Yes, I've actually started just forming that and making modifications here https://github.com/tpeacock19/tree-sitter-elisp. But I believe now it's gotten to a point where It has substantially changed. Good news is that...
Using this: ```javascript list: ($) => seq( field("open", "("), field("value", repeat($._form)), field("close", ")") ), vector: ($) => seq( "[", field("one", $.symbol), field("two", $.symbol), field("three", $.symbol), "]" ), ``` Does work...
`tree-sitter test` should compile a .so file in the default cache directory. Otherwise, you can use a script such as this: ```sh #!/usr/bin/env bash if [ "$(uname)" == "Darwin" ];...