From 7acf636d11eff661e5e5c5b59dc71514b7b210b2 Mon Sep 17 00:00:00 2001 From: jules <142106821+julesportier@users.noreply.github.com> Date: Sun, 12 Oct 2025 17:47:46 +0200 Subject: [PATCH] Fix TidalPlay collisions between tracks beginning with the same digit For example `TidalPlay: 1` was launching track d1 then d10 to d19 successively. --- plugin/tidal.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/tidal.vim b/plugin/tidal.vim index 791615d..44bb410 100644 --- a/plugin/tidal.vim +++ b/plugin/tidal.vim @@ -382,7 +382,7 @@ function! s:TidalSilence(stream) endfunction function! s:TidalPlay(stream) - let res = search('^\s*d' . a:stream) + let res = search('^\s*\') if res > 0 silent execute "normal! vip:TidalSend\" silent execute "normal! vip"