From 7e32d5ebcc2f8a2406e7392da69334c8255fb332 Mon Sep 17 00:00:00 2001 From: Alisue Date: Sat, 2 Aug 2025 23:33:43 +0900 Subject: [PATCH 1/2] Rename `FallListSelected` sign group to `FallListSelectedSign` Close #41 --- denops/fall/component/list.ts | 4 ++-- doc/fall.txt | 6 +++--- plugin/fall/highlight.vim | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/denops/fall/component/list.ts b/denops/fall/component/list.ts index da509e4..b9e9172 100644 --- a/denops/fall/component/list.ts +++ b/denops/fall/component/list.ts @@ -8,8 +8,8 @@ import type { Dimension } from "jsr:@vim-fall/core@^0.3.0/coordinator"; import { BaseComponent, ComponentProperties } from "./_component.ts"; export const HIGHLIGHT_MATCH = "FallListMatch"; -export const SIGN_GROUP_SELECTED = "PopUpFallListSelected"; -export const SIGN_SELECTED = "FallListSelected"; +export const SIGN_GROUP_SELECTED = "PopUpFallListSelectedSign"; +export const SIGN_SELECTED = "FallListSelectedSign"; /** * Type representing the decoration properties of an item, diff --git a/doc/fall.txt b/doc/fall.txt index b97eeed..d9b80e0 100644 --- a/doc/fall.txt +++ b/doc/fall.txt @@ -187,13 +187,13 @@ For example: ------------------------------------------------------------------------------- SIGN *fall-configuration-sign* -Use FallXXXXX sign groups to configure the picker window appearance. See +Use FallXXXXXSign sign groups to configure the picker window appearance. See |fall-sign| for a list of available sign groups. For example: >vim function! s:my_fall_style() abort - sign define FallListSelected text=* + sign define FallListSelectedSign text=* endfunction augroup fall_plugin_style @@ -643,7 +643,7 @@ HIGHLIGHT *fall-highlight* ----------------------------------------------------------------------------- SIGN *fall-sign* -*FallListSelected* +*FallListSelectedSign* Indicator sign for the selected item in the list component. Default to "»". diff --git a/plugin/fall/highlight.vim b/plugin/fall/highlight.vim index 14fb9f1..57f67b6 100644 --- a/plugin/fall/highlight.vim +++ b/plugin/fall/highlight.vim @@ -20,7 +20,7 @@ function! s:init() abort " List highlight default link FallListMatch Search highlight default link FallListSelected CurSearch - sign define FallListSelected text=≫ + sign define FallListSelectedSign text=≫ " Help highlight default link FallHelpHeader Conceal From 00d4630459bf9a409682291d8728b5400ccc4eef Mon Sep 17 00:00:00 2001 From: Alisue Date: Sat, 2 Aug 2025 23:42:28 +0900 Subject: [PATCH 2/2] Fix per-cache for denops --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7722ec7..58a4ad3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -107,6 +107,7 @@ jobs: - name: Perform pre-cache run: | deno cache \ + --config ${DENOPS_TEST_DENOPS_PATH}/denops/@denops-private/deno.jsonc \ ${DENOPS_TEST_DENOPS_PATH}/denops/@denops-private/mod.ts ./denops/fall/main.ts - name: Test