change default value for cursor_trail_decay_slow to 0.4
This commit is contained in:
parent
db2ca7b4b8
commit
261dd502b1
2 changed files with 2 additions and 2 deletions
|
|
@ -365,7 +365,7 @@
|
|||
'''
|
||||
)
|
||||
|
||||
opt('cursor_trail_decay', '0.1 0.3',
|
||||
opt('cursor_trail_decay', '0.1 0.4',
|
||||
option_type='cursor_trail_decay',
|
||||
ctype='!cursor_trail_decay',
|
||||
long_text='''
|
||||
|
|
|
|||
2
kitty/options/types.py
generated
2
kitty/options/types.py
generated
|
|
@ -514,7 +514,7 @@ class Options:
|
|||
cursor_stop_blinking_after: float = 15.0
|
||||
cursor_text_color: typing.Optional[kitty.fast_data_types.Color] = Color(17, 17, 17)
|
||||
cursor_trail: int = 0
|
||||
cursor_trail_decay: typing.Tuple[float, float] = (0.1, 0.3)
|
||||
cursor_trail_decay: typing.Tuple[float, float] = (0.1, 0.4)
|
||||
cursor_trail_distance_threshold: int = 2
|
||||
cursor_underline_thickness: float = 2.0
|
||||
default_pointer_shape: choices_for_default_pointer_shape = 'beam'
|
||||
|
|
|
|||
Loading…
Reference in a new issue