sebastiansturm

Results 78 comments of sebastiansturm

Yes, I used `-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=ON`. This is what `llvm-config-3.5 --prefix` returns: ``` /usr/local/Cellar/llvm35/3.5.0/lib/llvm-3.5 ``` > I think I will cleanup the CMake files: > Remove the Homebrew paths and use llvm-config...

sure, here you go: ``` total 0 11552692 drwxr-xr-x 44 sebastian admin 1,5K 20 Nov 23:26 bin 11553534 drwxr-xr-x 3 sebastian admin 102B 20 Nov 23:26 docs 11552052 drwxr-xr-x 9...

not sure how far this overlaps with the imenu functionality already provided by lsp-mode, but I guess I could just add an optional prefix parameter that will be used to...

thanks, that seems reasonable. If symbol kinds that large are in use, maybe `lsp-ivy-symbol-kind-to-face` should also be changed to an alist or something. With what language server did you get...

thanks. I see that ccls defines 4 symbol kinds > 26 that users will probably want to be shown; still unsure as to whether I should change `lsp-ivy-symbol-kind-to-face` though. For...

sorry for letting this linger for so long, will have a look tomorrow

as far as I can see, dynamic collections don't take matchers into account, which makes sense as our input must be provided in a form the dynamic backend understands. Though...

> @sebastiansturm > > > do you currently have plans to add a :filter argument to ivy-read? > > There's already a `:matcher` keyword. oh, indeed. Not sure how I...

> @sebastiansturm > > Is that mean that's a limitation of `ivy`? Since space-based match works in `vscode` while does not work in `emacs`. thanks, didn't know that; from a...

I opened a PR that partially addresses your request, though it does no fancy fuzzy matching, just simple string comparisons with the space-separated queries you provide. Could you check and...