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
instead of
local noobie_exmaple_1 = require("noobie") local noobie_exmaple_2 = require("noobie") noobie_exmaple_1{ path = os.getenv("HOME") .. '/.config/awesome/noobie/test.sh' } noobie_exmaple_2{ path = os.getenv("HOME") .. '/.config/awesome/noobie/othertest.py' }
i suggest to write it like:
local noobie = require("noobie") noobie_exmaple_1 = noobie{ path = os.getenv("HOME") .. '/.config/awesome/noobie/test.sh' } noobie_exmaple_2 = noobie{ path = os.getenv("HOME") .. '/.config/awesome/noobie/othertest.py' } --or just --noobie{ path = os.getenv("HOME") .. '/.config/awesome/noobie/test.sh' },
the existing example implying that noobie_exmaple_1 and noobie_exmaple_2 are different entities which is not the case
noobie_exmaple_1
noobie_exmaple_2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
instead of
i suggest to write it like:
the existing example implying that
noobie_exmaple_1
andnoobie_exmaple_2
are different entities which is not the caseThe text was updated successfully, but these errors were encountered: