Skip to content

Commit 29d3993

Browse files
committed
default the location filter to off
to preserve default vanilla behavior
1 parent 0fc4b15 commit 29d3993

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/lua/sort/locationselector.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function LocationSelectorOverlay:init()
7979
frame={l=1, t=0, r=1},
8080
label="Hide established:",
8181
key='CUSTOM_SHIFT_E',
82-
initial_option=true,
82+
initial_option=false,
8383
on_change=function() self:do_search(self.subviews.search.text, true) end,
8484
},
8585
},
@@ -113,7 +113,7 @@ end
113113
function LocationSelectorOverlay:reset()
114114
LocationSelectorOverlay.super.reset(self)
115115
self.cache = nil
116-
self.subviews.hide_established:setOption(true, false)
116+
self.subviews.hide_established:setOption(false, false)
117117
end
118118

119119
function LocationSelectorOverlay:get_cache()

0 commit comments

Comments
 (0)