Skip to content

Commit c55bb0d

Browse files
committed
Remove alt paths from stop_paths
1 parent 950799d commit c55bb0d

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

rplugin/python3/acid/nvim/__init__.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -113,15 +113,8 @@ def get_acid_ns(nvim):
113113
elif 'ns:' in strategy:
114114
return strategy.split(':')[-1]
115115

116-
def test_paths(nvim):
117-
return {'test', *nvim.vars.get('acid_alt_test_paths', [])}
118-
119-
def src_paths(nvim):
120-
return {'src', *nvim.vars.get('acid_alt_paths', [])}
121-
122116
def get_stop_paths(nvim):
123-
return set() | test_paths(nvim) | src_paths(nvim)
124-
117+
return {'test', 'src'}
125118

126119
def find_file_in_path(nvim, msg):
127120
fname = msg['file']

0 commit comments

Comments
 (0)