Martin Skarzynski

Results 29 comments of Martin Skarzynski

I'm experiencing this issue (white background even though I have a dark theme in my config) on two different MacBooks.

I think the solution is here: https://github.com/qvacua/vimr/issues/728#issuecomment-564910943

Updating to the latest VimR via homebrew fixed this for me.

@statquant, I don't think there are any coc-r-lsp features to set up. Diagnostics (with `lintr`) are enabled by default. There are however many awesome features available in the [coc ecosystem...

I split the original feature into 5 independent features. Each feature has its own setting (disabled by default) to allow for granular control of completion behavior: 1. `auto_complete_function_parentheses`: - Tab:...

I tried `(setq echo-keystrokes 0.1)`, but it didn't do anything.

```lua function exitFullScreen(win) local win = win or hs.window.focusedWindow() if win:isFullScreen() then win:setFullScreen(false) end end function enterFullScreen(win) local win = win or hs.window.focusedWindow() if not win:isFullScreen() then win:setFullScreen(true) end end...

I submitted a pull request that implements the changes described above: #229. **Note:** This also completely changes how completion works: Tab: - does not cycle thru completion options and instead...

@randy3k, how can backward compatibility be best guaranteed? GitHub Actions workflow to build different versions?

@randy3k, thanks for merging in #227. I pulled the latest changes from the master branch into this PR.