BertrandSim

Results 16 comments of BertrandSim

Oh yes, I forgot to mention. I'm using classic vim 8.1 (ie. no tree-sitter)

Changing the `:colorscheme` resets all highlights to their defaults (including those specified with `:hi link`). That is why the custom highlighting commands have to go after `:colorscheme`. This can be...

I did a little bit of debugging. In my case, I noticed that the function `clever_f#reset()` in "autoload/clever_f.vim" returns an empty string (`''`). Changing its return value to a non-empty...

Alternatively, bypass the `` mapping, and call the reset function directly, that is ``` nnoremap :call clever_f#reset() ```

Imo the highlights should also be cleared after pressing `d` (a `ModeChanged` event). However, this event was only added in a recent version of vim (8.2.3430)

This request could be done with a `post_jump` action, checking if we are at the end of the snippet with the value of `snip.tabstop`, and a vim timer that sends...

Maybe I am missing something, but I don't see how vim-surround is related to this issue.

Indeed, I had missed something. While #55 fixed this issue, it resulted in this plugin being incompatible with custom operators that use getchar(), such as vim-surround. As I understand it,...

I've tracked the problem of the junk characters down to [`vim_helper.select()`](https://github.com/SirVer/ultisnips/blob/master/pythonx/UltiSnips/vim_helper.py#L190-L213). This function is called by [`snippet_manager._jump()`](https://github.com/SirVer/ultisnips/blob/master/pythonx/UltiSnips/snippet_manager.py#L542). In particular, * `_jump()` is called after a snippet expansion followed by an...

Seconding this, the stylus pen pressure and buttons were ignored for me, on a Asus Zenbook, Mint 21. Stylus works perfectly in Xournalpp. Edit: Using a wacom stylus works perfectly,...