jeff

Results 19 comments of jeff

@AlexisFinn could you provide the output of `:ls` and `:ls t` for the error you reported?

As an alternative you could check out this fork: https://github.com/jeff-dh/expJABS.nvim It's a refactored and enhanced version of JABS, that **might** not be affect by this issue.

It makes sense that a "previous" aborted call to JABS causes the error mentioned by @Sanart0 . Since this branch of the JABS plugin uses a global state. An aborted...

I think you did everything right regarding the `:ls` command. Does it really output `ligne`? Not `line`? If that's the case, that's the issue! Are you running nvim in French?...

Yeah, the non English language of nvim is pretty sure the issue..... JABS uses a regexp that "greps" for "line" to parse the output of `:ls`, if nvim does not...

So, it turned out that the reason why expJABS is not affected by this issue is, that `sort_mru = true` is the default in expJABS otherwise it produces very similar...

I guess it's the hidden symbol that's missing, try to set this in your config (and choose a symbol you like instead of `H`): ```lua require 'jabs'.setup { symbols =...

https://vi.stackexchange.com/questions/7734/how-to-save-and-restore-a-mapping

This is a hack, but it "fixes" the issue in user space: ```python import collections collections.MutableMapping = collections.abc.MutableMapping from flask_nav import Nav from flask_nav.elements import * ```