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
Renaming a required identifier changes the module path in that file's require.
require
Example: two files, a.rkt and b.rkt
a.rkt
b.rkt
;; a.rkt #lang racket (provide a) (define a 5) ;; b.rkt #lang racket (require "a.rkt") (+ a 2)
Opening b.rkt, right clicking on a on line 3, and renaming it to foo changes the line 2 of b.rkt to (require foo).
a
foo
(require foo)
What I expected: it would leave the require path alone.
Racket version: 8.1.0.7 [cs]
The text was updated successfully, but these errors were encountered:
Relevant discussion: #417
Sorry, something went wrong.
This no longer offers a renaming option. Probably it is okay to close this, given #417.
No branches or pull requests
Renaming a
require
d identifier changes the module path in that file'srequire
.Example: two files,
a.rkt
andb.rkt
Opening
b.rkt
, right clicking ona
on line 3, and renaming it tofoo
changes the line 2 ofb.rkt
to(require foo)
.What I expected: it would leave the require path alone.
Racket version: 8.1.0.7 [cs]
The text was updated successfully, but these errors were encountered: