Shih-Ming Wang

Results 45 comments of Shih-Ming Wang

The problem might be related to [this](https://vi.stackexchange.com/a/15995). Particularly, for me the filter doesn't work for neovim's terminal because when opening a terminal, in the `lens#win_enter` function still see the current...

It turned out that #31 could solve the problem.

I ended up implemented my own plugin that only resize window if specified by rules: [ipod825/war.vim](https://github.com/ipod825/war.vim).

This is nice! But I wonder how much overhead that costs. Because we might add a lot of branching in an instance function where you might keep referring to `self.something`....

Try catch should reduce the overhead ```julia try getfield(self, name) catch (args...; kwargs...)->eval(:(\$name(\$self, \$args...; \$kwargs...))) end ``` But it's still a large overhead.

Also, instead of having an additional args to `@class`, a function in the module that switches on/off a global variable would be a better idea as the user don't need...

`isdefined` seems to trigger the inline compilation optimation. That's nice. However, it doesn't seem to help for function calls. Changing the test case to: ```julia bg["DotOpr"]["get_field1"] = @benchmarkable o.fun1(1) setup=(o...

Yeah, that sounds like a good uses case. But I think this package is outdated now since julia 0.6 is now out...

Though I am not using Julia now, you are still welcomed to send a pull request.

`action.editWithVim` doesn't work on sites like google doc. I can work on this later.