Permalink
Branch: master
Commits on Feb 11, 2019
-
Merge pull request #927 from alexarchambault/topic/dont-print-private…
…-stuff Don't print things marked as private
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
-
Don't print things marked as private
alexarchambault committedFeb 10, 2019 Previously, private things were printed back, even though they can't be used after the input block they're defined in, like ```scala @ private val x = 2; val y = x + 1 x: Int = 2 y: Int = 3 @ x cmd1.sc:1: not found: value x val res1 = x ^ Compilation Failed ``` This commit changes that, not printing any private thing, like ```scala @ private val x = 2; val y = x + 1 y: Int = 3 ```
-
Commits on Jan 25, 2019
-
-
This partly reverts some changes of 84d4854, by saving / restoring tty stuff right before and after reading input. This basically runs processes right before and after reading input, which incurs a perf cost - just like before 84d4854. One can see it by starting an Ammonite session, waiting for it to be fully started, then repeatedly entering Enter. There's a small delay between each prompt. 84d4854 addressed that, but breaking a few stuff along the way (#920, #922).
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Jan 22, 2019
-
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Jan 11, 2019
-
-
Fix canBeOpenedAsJar check (#917)
It wasn't fine after 4a58080. The integration tests still passed as the launcher file name ends with `.jar` there, and canBeOpenedAsJar isn't called in that case.
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Jan 10, 2019
-
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Jan 9, 2019
-
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Commits on Jan 7, 2019
Commits on Dec 21, 2018
-
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Merge pull request #850 from alexarchambault/topic/compiler-classpath…
…-url Allow non-files in classpath
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Dec 20, 2018
-
-
Keep classpath as URLs rather than files internally
alexarchambault committedDec 20, 2018
Commits on Dec 19, 2018
Commits on Dec 18, 2018
-
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Dec 12, 2018
-
Mention sbt-ammonite-classpath (#907)
Co-Authored-By: Atry <pop.atry@gmail.com>
Commits on Dec 11, 2018
-
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
-
Allow to tweak FullReplAPI.Internal
alexarchambault committedDec 11, 2018 when using Ammonite as a library In particular, this allows to print nothing at all for types other than Unit.
-
-
-
-
Commits on Dec 6, 2018
-
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with a verified signature using GitHub’s key.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
NewerOlder