File tree 2 files changed +2
-2
lines changed
rplugin/python3/acid/commands
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ def prepare_payload(self):
40
40
path = current_file (self .nvim )
41
41
root_path = current_path (self .nvim )
42
42
rel_path = os .path .relpath (path , start = root_path ).split ('/' )
43
- open_with = nvim .vars .get (
43
+ open_with = self . nvim .vars .get (
44
44
'acid_open_alternate_file_with' ,
45
45
nvim .vars .get ('acid_open_new_file_with' , 'edit' )
46
46
)
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ def prompt_default(nvim):
23
23
def prepare_payload (self , ns ):
24
24
fname = "{}.clj" .format (ns_to_path (ns ))
25
25
base = 'test' if ns .endswith ('-test' ) else 'src'
26
- open_with = nvim .vars .get ('acid_open_new_file_with' , 'edit' )
26
+ open_with = self . nvim .vars .get ('acid_open_new_file_with' , 'edit' )
27
27
path = os .path .join (current_path (self .nvim ), base , fname )
28
28
29
29
with open (path , 'w' ) as fpath :
You can’t perform that action at this time.
0 commit comments