backdround
backdround
I created example project that failed when build. There are instructions to reproduce and fix it: https://github.com/backdround/fuzzywuzzy_include_problem
I have the same behavior, when use [coc-prettier](https://github.com/neoclide/coc-prettier). vim version: NVIM v0.5.0-dev+1197-ga17782042 node version: v15.13.0 coc.nvim version: 0.0.80-2dbe0ae611 coc-prettier: 1.1.23
I've got it by some code in method: Instead of: ```go func (m *MockObject) Get(data int) int { args := m.Called(data) return args.Int(0) } ``` Use this: ```go func (m...
Sorry for the unclear description, @Conni2461 . Neovim by default prints search-commands (`/`) into stderr output when used in the headless mode: ```bash nvim --headless -u NONE -c ":normal! /hello"...
@Conni2461 minimal example of this test_spec.lua: ```lua local some_plugin_function = function() for _=0, 10 do -- The culprit! vim.cmd("normal! n") end end describe("issue-example", function() it("test", function() vim.api.nvim_buf_set_lines(0, 0, 0, true,...
Original `hitest` doesn't work for people who have some mappings, because of absence of `bang` for `normal` commands. So it would be grateful to be merged
`search` with `$` pattern places the cursor on the column one symbol past the last symbol on the current line. As I understand it's literally the end of the line...
It seems to me that if I perform any `search` with the flag `accept current` twice it should stuck at the second call. But now it doesn't work that way...
I've been trying for two days to make up a robust algorithm that allows me to get two positions - pattern-start and pattern-end, regardless of a given pattern. With current...
I'll reiterate once more: ```lua -- I manually place the cursor here in visual mode a = b -- ^ b = c -- -- I hit a hotkey with...