Xiaochuan Yu
Xiaochuan Yu
So I actually modified `shellapp.py` as follows: ``` try: for fname in sorted(startup_files): self._exec_file(fname) except: self.log.warning("Unknown error in handling startup files:") raise # added this ``` The stacktrace I got...
Sounds good to me. I don't have any other concerns.
Had same problem, this is due to library not allowing pagination parameters. I created a PR: https://github.com/os/slacker/pull/167 for this.
@os @Ishaan28malik I opened up a similar PR https://github.com/os/slacker/pull/167 which also addresses @os's comment above.
K I updated my config to disable `watch_gitdir` and I think its got a little better: ```lua gitsigns.setup { debug_mode = true, watch_gitdir = { enabled = false, }, update_debounce...
Ok I think that really fixed it. Thank you so much!
Yea I'm using `v0.7.2`. Unfortunately I can't update to nightly for my work laptop :( I've instead made a hacky workaround which seems to work so far. ```diff M lua/nvim-surround/config.lua...
This is now fixed in nvim 0.8.
I also find it confusing that the doc indicate this is wrong: ``` foo = Foo() foo.bar = Bar() # WRONG! ``` But this seem to be ok: ``` Foo(bar=Bar())...
Sorry to ask again but is there a new link for this?