mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-10-09 04:26:57 +02:00

Implements five new vimscript list functions: - count(): counts occurrences of a value in a list/dict - index(): finds first index of a value in a list - min()/max(): finds minimum/maximum value in a list/dict - range(): generates a list of numbers with optional stride Includes error handling for edge cases like zero stride and invalid ranges.