Matt Jones

Results 12 comments of Matt Jones

I might have something unusual about my setup, but I've found that symlinks don't get picked up by spotlight, so symlinking the app dir (or the individual apps) don't cause...

For what it’s worth, wasn’t able to figure out how to alias a directory with applescript, but I’m barely proficient at it so it’s possible I’m missing something simple. Aliasing...

The API should probably also be tweaked to use `time.Duration` and other non-numeric types where appropriate.

My directory structure: ``` $ tree . ├── go.mod ├── go.sum └── site    ├── main.go    ├── .dir-locals.el    └── site ``` The `.git` directory is in the same dir as the...

I invoke eglot indirectly from my init: ``` (use-package eglot :straight t :hook ((python-mode c++-mode c-mode go-mode rust-mode) . 'eglot-ensure)) ```

I'm invoking `eglot-insure` as part of the `go-mode-hook` when I visit the `main.go` file. I'll try to create a minimal repro now (apologies, but do you have a template handy...

It's very possible my new `.emacs` isn't quite right, but I'm seeing the following: My .emacs: ``` ;; Added by Package.el. This must come before configurations of ;; installed packages....

So, setting the variable as @xuchunyang described in my init.el does the expected thing (I see eglot sending the configuration to gopls on the first connect, placeholders work as expected),...

Yup, that sounds totally reasonable. I'll update the diff. > On Sep 25, 2015, at 2:27 PM, Samuel Stauffer [email protected] wrote: > > Part of my worry is that it...