File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -107,6 +107,7 @@ jobs:
107107 - name : Perform pre-cache
108108 run : |
109109 deno cache \
110+ --config ${DENOPS_TEST_DENOPS_PATH}/denops/@denops-private/deno.jsonc \
110111 ${DENOPS_TEST_DENOPS_PATH}/denops/@denops-private/mod.ts ./denops/fall/main.ts
111112
112113 - name : Test
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ import type { Dimension } from "jsr:@vim-fall/core@^0.3.0/coordinator";
88import { BaseComponent , ComponentProperties } from "./_component.ts" ;
99
1010export const HIGHLIGHT_MATCH = "FallListMatch" ;
11- export const SIGN_GROUP_SELECTED = "PopUpFallListSelected " ;
12- export const SIGN_SELECTED = "FallListSelected " ;
11+ export const SIGN_GROUP_SELECTED = "PopUpFallListSelectedSign " ;
12+ export const SIGN_SELECTED = "FallListSelectedSign " ;
1313
1414/**
1515 * Type representing the decoration properties of an item,
Original file line number Diff line number Diff line change @@ -187,13 +187,13 @@ For example:
187187-------------------------------------------------------------------------------
188188SIGN *fall-configuration-sign*
189189
190- Use FallXXXXX sign groups to configure the picker window appearance. See
190+ Use FallXXXXXSign sign groups to configure the picker window appearance. See
191191| fall-sign | for a list of available sign groups.
192192
193193For example:
194194>vim
195195 function! s:my_fall_style() abort
196- sign define FallListSelected text=*
196+ sign define FallListSelectedSign text=*
197197 endfunction
198198
199199 augroup fall_plugin_style
@@ -643,7 +643,7 @@ HIGHLIGHT *fall-highlight*
643643-----------------------------------------------------------------------------
644644SIGN *fall-sign*
645645
646- *FallListSelected *
646+ *FallListSelectedSign *
647647 Indicator sign for the selected item in the list component.
648648 Default to "»".
649649
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ function! s:init() abort
2020 " List
2121 highlight default link FallListMatch Search
2222 highlight default link FallListSelected CurSearch
23- sign define FallListSelected text= ≫
23+ sign define FallListSelectedSign text= ≫
2424
2525 " Help
2626 highlight default link FallHelpHeader Conceal
You can’t perform that action at this time.
0 commit comments