Skip to content

Commit 88c74a1

Browse files
authored
Merge pull request #17 from clojure-vim/fix-import
Fix import
2 parents fe895a5 + 4bca21d commit 88c74a1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

rplugin/python3/acid/nvim/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,7 @@ def src_paths(nvim):
120120
return {'src', *nvim.vars.get('acid_alt_paths', [])}
121121

122122
def get_stop_paths(nvim):
123-
return set() | test_paths(nvim) | src_paths(nvim)
124-
123+
return {'test', 'src'}
125124

126125
def find_file_in_path(nvim, msg):
127126
fname = msg['file']

0 commit comments

Comments
 (0)