Skip to content

Commit a9ba287

Browse files
committed
fix var get
1 parent 5faa193 commit a9ba287

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rplugin/python3/acid/commands/alternate_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def prepare_payload(self):
4242
rel_path = os.path.relpath(path, start=root_path).split('/')
4343
open_with = self.nvim.vars.get(
4444
'acid_open_alternate_file_with',
45-
nvim.vars.get('acid_open_new_file_with', 'edit')
45+
self.nvim.vars.get('acid_open_new_file_with', 'edit')
4646
)
4747

4848
if rel_path[0] in src:

0 commit comments

Comments
 (0)