Skip to content

Commit abf9c78

Browse files
authored
Merge pull request #43 from vim-fall/fix-tag
Rename FallListSelected sign group to FallListSelectedSign
2 parents 5eb4a68 + 00d4630 commit abf9c78

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

denops/fall/component/list.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import type { Dimension } from "jsr:@vim-fall/core@^0.3.0/coordinator";
88
import { BaseComponent, ComponentProperties } from "./_component.ts";
99

1010
export 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,

doc/fall.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,13 +187,13 @@ For example:
187187
-------------------------------------------------------------------------------
188188
SIGN *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

193193
For 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
-----------------------------------------------------------------------------
644644
SIGN *fall-sign*
645645

646-
*FallListSelected*
646+
*FallListSelectedSign*
647647
Indicator sign for the selected item in the list component.
648648
Default to "»".
649649

plugin/fall/highlight.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)