File tree 2 files changed +0
-15
lines changed
2 files changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -8,11 +8,6 @@ function Grapple.setup(opts)
8
8
if err then
9
9
return vim .notify (err , vim .log .levels .ERROR )
10
10
end
11
-
12
- local err = app :load_current_scope ()
13
- if err then
14
- return vim .notify (err , vim .log .levels .ERROR )
15
- end
16
11
end
17
12
18
13
--- @class grapple.options
Original file line number Diff line number Diff line change @@ -84,16 +84,6 @@ function App:delete_scope(scope_name)
84
84
return self .scope_manager :delete (scope_name )
85
85
end
86
86
87
- --- @return string ? error
88
- function App :load_current_scope ()
89
- local scope , err = self :current_scope ()
90
- if not scope then
91
- return err
92
- end
93
-
94
- self .tag_manager :load (scope .id )
95
- end
96
-
97
87
--- @return grapple.resolved_scope | nil , string ? error
98
88
function App :current_scope ()
99
89
return self .scope_manager :get_resolved (self .settings .scope )
You can’t perform that action at this time.
0 commit comments