Skip to content
New issue

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

Ctrl-X Ctrl-S not working for REPL defined defn's #187

Open
naxels opened this issue Mar 31, 2019 · 0 comments
Open

Ctrl-X Ctrl-S not working for REPL defined defn's #187

naxels opened this issue Mar 31, 2019 · 0 comments

Comments

@naxels
Copy link

naxels commented Mar 31, 2019

When I define a function at the REPL, I get the autocomplete as well as the function/argument after pressing spacebar after the invocation of the function.

I can also do Ctrl-X Ctrl-D for the doc.

However when trying to do Ctrl-X Ctrl-S, nothing shows up

Example:

Define in the REPL:
user=> (def visitors (atom #{}))
user=> (defn hello
#_=> [username]
#_=> (swap! visitors conj username)
#_=> (str "Hello, " username))

After this type:
user=> (hello

now when you press spacebar you will see the argument required
or when you press Ctrl-X Ctrl-D you will see the doc

however when Ctrl-X Ctrl-S, nothing appears.

Is there something I'm missing?

Thank you,
Patrick

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant