Skip to content

Commit

Permalink
fix: default cwd to current directory (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesmithgh authored Jan 3, 2024
1 parent a8e3998 commit d33c1fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/kitty_scrollback_nvim.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def parse_cwd(args):
cwd_args = args[idx + 1]
del args[idx:idx + 2]
return ('--cwd', cwd_args)
return ()
return ('--cwd', 'current')


def nvim_err_cmd(err_file):
Expand Down

0 comments on commit d33c1fb

Please sign in to comment.