高浩亮

Results 37 comments of 高浩亮

> I can add support for b:did_ftplugin. yeah, that's the behavior i am looking for.

i finallly realized how easy can this be fixed :) would you mind to have a look at this pr? @justinmk

after dug deeper, i dont think this is a bug. although this hardcode `source` existed since #105, i disabled this source in my fork and used for a couple week,...

i think plenary.log might be a good solution.

well, i actually haven't do a benchmark before opening this issue, and overstated its impact, it's not `anywhere`. i should be sorry for that. > a function that returns a...

speak of overhead, it might not be noticed since it's just several cpu clocks and memory allocations. but it's still a waste, and cleaning it do make me happier, haha.

i made a [commit](https://github.com/haolian9/null-ls.nvim/commit/294c83a8736aeb7d81023a13794fbcf74e46b157) that achieved what i had discribed, but it's a complete rewrite of logger.lua (due to i am not familiar to lua's metaprogramming), so it can never...

i think it's time to close this issue. i tried to learn lua's meta programming pattern several times, sadly it is too magic to me.

seems you just need to bind a no-op to the body. this config might help ``` invoke_on_body = true, on_enter = function() end, ``` well, i misread, and now i...

seems it can be done easily in user config: * add autocmd for ft=trouble that add your custom actions * name the action you desired as my_close ``` my_close =...