Henrik Lissner

Results 312 comments of Henrik Lissner

I've converted this to a draft for the time being because I'd like for the hard tree-sitter dependency to be removed, but I haven't had the time to figure out...

It would probably have been easiest to rebase everything onto `master` before amending those commits, but I've cherry-picked the commits onto master directly to save you the trouble, so we...

`SPC TAB d` was not designed to delete the saved file (and shouldn't, because deleting the workspace in the current session should be distinct from deleting its saved copy). There...

~~I'm not sure this is desirable. This would make *every* line of every block comment a veritable imenu section and/or outline-mode heading. Three semi-colons should be the minimum for this.~~...

There were a bunch of minor changes needed (mainly to conform git messages to conventions, squash commits, and polish our regexp for `outline-regexp` (to ensure the order of semi-colons and...

I don't know anything about flatpak. Does it provide no way to set environment variables, or to modify the environment in which the contained app runs?

Is there no way to bake environment variables into a flatpak'ed app?

How about creating an shim in `/usr/local/bin/emacs` (or `/usr/bin/emacs`) containing the following? ```sh #!/usr/bin/env bash /usr/bin/flatpak run org.gnu.emacs "$@" ```

Another alternative: ```sh # add to your shell config (.zshrc or .bashrc) export EMACS="/usr/bin/flatpak run org.gnu.emacs" ```

Thanks for the PR, but I'm afraid I must turn this down. Though this functionality is something I want for the `:ui workspaces` module, eventually, this implementation introduces some undesired...