Skip to content

Commit

Permalink
[skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown committed May 3, 2024
1 parent 0245899 commit b6da2e5
Show file tree
Hide file tree
Showing 5 changed files with 81 additions and 66 deletions.
Binary file modified assets/images/social/evaluation.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 19 additions & 4 deletions output/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1999,11 +1999,26 @@ <h1 id="output-destinations">Output Destinations<a class="headerlink" href="#out
<h2 id="commands-for-showing-output-destinations">Commands for showing output destinations<a class="headerlink" href="#commands-for-showing-output-destinations" title="Permanent link">#</a></h2>
<p>These are the commands and their default keyboard shortcuts for revealing output destinations</p>
<ul>
<li><strong>Calva: Show/Open the result output destination</strong> - <code>ctrl+alt+o o</code></li>
<li><strong>Calva: Show/Open the Calva says Output Channel</strong> - <code>ctrl+alt+o c</code></li>
<li><strong>Calva: Show/Open the Calva Output Terminal</strong> - <code>ctrl+alt+o t</code></li>
<li><strong>Calva: Show/Open REPL Window</strong> - <code>ctrl+alt+o r</code></li>
<li><strong>Calva: Show/Open the result output destination</strong>, without focusing it - <code>ctrl+alt+o o</code></li>
<li><strong>Calva: Show/Open the Calva says Output Channel</strong>, without focusing it - <code>ctrl+alt+o c</code></li>
<li><strong>Calva: Show/Open the Calva Output Terminal</strong>, without focusing it - <code>ctrl+alt+o t</code></li>
<li><strong>Calva: Show/Open REPL Window</strong>, also focuses it - <code>ctrl+alt+o r</code></li>
</ul>
<div class="admonition note">
<p class="admonition-title">Focusing the output destination</p>
<p>The commands for opening the result destination all take a boolean argument for wether they should preserve focus or not. You can register keybindings that behave differently than the default ones. E.g.:</p>
<div class="highlight"><pre><span></span><code><span class="p">{</span>
<span class="w"> </span><span class="nt">&quot;key&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;ctrl+alt+o ctrl+alt+o&quot;</span><span class="p">,</span>
<span class="w"> </span><span class="nt">&quot;command&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;calva.showResultOutputDestination&quot;</span><span class="p">,</span>
<span class="w"> </span><span class="nt">&quot;args&quot;</span><span class="p">:</span><span class="w"> </span><span class="kc">false</span>
<span class="p">},</span>
<span class="p">{</span>
<span class="w"> </span><span class="nt">&quot;key&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;ctrl+alt+o ctrl+alt+r&quot;</span><span class="p">,</span>
<span class="w"> </span><span class="nt">&quot;command&quot;</span><span class="p">:</span><span class="w"> </span><span class="s2">&quot;calva.showOutputWindow&quot;</span><span class="p">,</span><span class="w"> </span><span class="c1">// Show/Open REPL Window</span>
<span class="w"> </span><span class="nt">&quot;args&quot;</span><span class="p">:</span><span class="w"> </span><span class="kc">true</span>
<span class="p">},</span>
</code></pre></div>
</div>
<h2 id="about-stdout-in-the-repl-window">About stdout in the REPL Window<a class="headerlink" href="#about-stdout-in-the-repl-window" title="Permanent link">#</a></h2>
<p>Since Calva v2.0.423 the REPL Window prints <code>stdout</code> prepended with <code>;</code> to make it into line comments. This is because stdout output easily breaks the Clojure structure of the REPL Window, making it misbehave in various ways. We made this change because as maintainers of Calva we have seen all too often how this hits users, and it is also taking too much of our Calva time to try mitigate the problem, which is fundamentally not fixable.</p>
<p>There are now other output destinations that do not have this limitation.</p>
Expand Down
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

Loading

0 comments on commit b6da2e5

Please sign in to comment.