We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For some reason, on my setup, the following code results in the wrong paths:
let g:rescript_bsc_exe = getcwd() . "/" . l:res_bin_dir . "/bsc.exe" let g:rescript_bsb_exe = getcwd() . "/" . l:res_bin_dir . "/bsb.exe"
The path l:res_bin_dir is already absolute, so prepending getcwd() adds redundant directories to the front and makes the path wrong.
l:res_bin_dir
getcwd()
This change fixes the paths on my system: ellbur@b42b94e
I don't know much about vimscript so I don't know if that would cause problems on other systems.
My system is: Linux (Manjaro), NeoVim 0.6.1.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For some reason, on my setup, the following code results in the wrong paths:
The path
l:res_bin_dir
is already absolute, so prependinggetcwd()
adds redundant directories to the front and makes the path wrong.This change fixes the paths on my system: ellbur@b42b94e
I don't know much about vimscript so I don't know if that would cause problems on other systems.
My system is: Linux (Manjaro), NeoVim 0.6.1.
The text was updated successfully, but these errors were encountered: