bullets.vim icon indicating copy to clipboard operation
bullets.vim copied to clipboard

Bullet type does not update if incrementing/decrementing with insert-mode <C-t>/<C-d>

Open mtrajano opened this issue 4 years ago • 1 comments

Not sure if this is intentional or not but I assume it would work the same as incrementing/decrementing with </> in normal mode

To reproduce:

- some list

Create an item under some list and increment using <C-t> this will not change the bullet type, then switch to normal mode and increment with >, you will see that the bullet type changes

mtrajano avatar Dec 16 '21 19:12 mtrajano

Can you please provide more details of what happens and what you expect to happen? I believe I just tested the same thing that you described and the bullet type changes with both <C-t> and > the same way.

- some list|

Enter:

- some list
- |

<C-t>:

- some list
  * |

instead of <C-t> typing > in normal mode gives the same result:

- some list
" Enter
- some list
- |
" <Esc>>
- some list
  *

kaymmm avatar Oct 08 '22 22:10 kaymmm

I also experienced <C-t> and > behaving differently, it turned out to be Vimwiki's conflicting bullet-point mappings.

I disabled Vimwiki's bullet-point keymappings with—

let g:vimwiki_key_mappings = { "lists": 0 }

—and <C-t>/<C-d> behaved as expected.

If you have Telescope you can check for conflicting mappings from other plugins with :Telescope keymaps, query for C-t, and check what comes up.

Enchoseon avatar Oct 09 '23 00:10 Enchoseon