Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix treeview focusing to hidden view #1799

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Syntax error fix
  • Loading branch information
mobilex1122 committed Jun 1, 2024
commit a9c9bb63eb32486a4c8306e0be067034adc88e21
2 changes: 1 addition & 1 deletion data/plugins/treeview.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ config.plugins.treeview = common.merge({
highlight_focused_file = true,
expand_dirs_to_focused_file = false,
scroll_to_focused_file = false,
animate_scroll_to_focused_file = true
animate_scroll_to_focused_file = true,
-- Shows treeview on treeitem:toggle-focus if previously hidden
show_on_focus = true,
}, config.plugins.treeview)
Expand Down
Loading