Alex Plescan

Results 7 comments of Alex Plescan

A bunch of these directories are now [ignored by default](https://github.com/emacs-lsp/lsp-mode/blob/master/lsp-mode.el#L325). In my case, adding the following to my `config.el` (Doom) was enough to get rid of the warning: ```elisp ;...

Count me in on this request, too. I'll try and figure out how to work DOCX.js, if I do I'll make a pull request with a simple readme.

Try adding `:method => :put` to your `form_for`. So, your above snippet should look like this: ``` true, :html => { :multipart => true, :method => :put }) do |f|...

Hey @sroze, I might not be understanding your proposal correctly, but couldn't you achieve what you're proposing by specifying your own default group? In your case, it could look like:...

I think I understand now, are you after a way to return all `@Expose`d properties of the class regardless of what `groups` they have configured? If yes, I wonder if...

@dlvhdr - where are you adding the `mappings` config referenced above? In my case I had to add it under telescope's `opts`, specifically: `opts.extensions.smart_open`. [Here's an example from my dotfiles](https://github.com/alexpls/dotfiles/blob/85cf3fe7446e1f3acf525974a9a42e222631fc9e/nvim/.config/nvim/lua/plugins/navigation.lua#L11-L20).

Hey @patricknazar, I've had a read through the code and can't see any way of using polymorphism directly on the root object being sent to `plainToClass()`. It looks like the...