Skip to content

Commit 907088c

Browse files
committed
Update site docs
1 parent 0bf53a9 commit 907088c

File tree

6 files changed

+762
-729
lines changed

6 files changed

+762
-729
lines changed

docs/cider/about/compatibility.html

+10-4
Original file line numberDiff line numberDiff line change
@@ -462,10 +462,10 @@ <h2 id="nrepl"><a class="anchor" href="#nrepl"></a>nREPL</h2>
462462
<h2 id="java"><a class="anchor" href="#java"></a>Java</h2>
463463
<div class="sectionbody">
464464
<div class="paragraph">
465-
<p>CIDER officially targets Java 8, Java 11, Java 17, and the most recent rapid
466-
release version (e.g. Java 18). Generally speaking, we aim
465+
<p>CIDER officially targets Java 8, Java 11, Java 17, Java 21 and the most recent rapid
466+
release version (e.g. Java 22). Generally speaking, we aim
467467
to support all Java releases that are currently officially supported
468-
by Oracle.</p>
468+
by Oracle.<sup class="footnote">[<a id="_footnoteref_1" class="footnote" href="#_footnotedef_1" title="View footnote.">1</a>]</sup></p>
469469
</div>
470470
<div class="admonitionblock note">
471471
<table>
@@ -489,7 +489,7 @@ <h2 id="java"><a class="anchor" href="#java"></a>Java</h2>
489489
<h2 id="clojure"><a class="anchor" href="#clojure"></a>Clojure</h2>
490490
<div class="sectionbody">
491491
<div class="paragraph">
492-
<p>CIDER targets Clojure 1.8+. As Clojure doesn&#8217;t have the concept of supported releases
492+
<p>CIDER targets Clojure 1.9+. As Clojure doesn&#8217;t have the concept of supported releases
493493
we have to get a bit creative to determine the minimum version to target.</p>
494494
</div>
495495
<div class="paragraph">
@@ -707,6 +707,12 @@ <h2 id="compatibility-matrix"><a class="anchor" href="#compatibility-matrix"></a
707707
</div>
708708
</div>
709709
</div>
710+
<div id="footnotes">
711+
<hr>
712+
<div class="footnote" id="_footnotedef_1">
713+
<a href="#_footnoteref_1">1</a>. You can find more information about the supported Java releases <a href="https://www.oracle.com/java/technologies/java-se-support-roadmap.html">here</a>.
714+
</div>
715+
</div>
710716
<nav class="pagination">
711717
<span class="prev"><a href="release_policy.html">Release Policy</a></span>
712718
<span class="next"><a href="logo.html">Logo</a></span>

docs/cider/basics/up_and_running.html

+4-1
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,10 @@ <h4 id="clojure-cli-options"><a class="anchor" href="#clojure-cli-options"></a>C
806806
<p><code>cider-clojure-cli-parameters</code> - the command-line parameters to start a REPL</p>
807807
</li>
808808
<li>
809-
<p><code>cider-clojure-cli-aliases</code> - a list of aliases to be used at jack-in time</p>
809+
<p><code>cider-clojure-cli-aliases</code> - a list of project-specific aliases to be used at jack-in time (it&#8217;s meant to be set via <code>.dir-locals.el</code>)</p>
810+
</li>
811+
<li>
812+
<p><code>cider-clojure-cli-global-aliases</code> - a list of global aliases that are appended to project-specific <code>cider-clojure-cli-aliases</code></p>
810813
</li>
811814
</ul>
812815
</div>

docs/cider/debugging/inspector.html

+5-6
Original file line numberDiff line numberDiff line change
@@ -609,11 +609,10 @@ <h2 id="configuration"><a class="anchor" href="#configuration"></a>Configuration
609609
frame.</p>
610610
</div>
611611
<div class="paragraph">
612-
<p>Starting from CIDER 1.8.0, when you define a var using <kbd>d</kbd>,
613-
a var name can be suggested (default none). You can customize this value
614-
via the <code>cider-inspector-preferred-var-names</code> configuration option.
615-
Even after setting it, you are free to choose new names on the fly,
616-
as you type. Most recent names will take priority in subsequent usages.</p>
612+
<p>When you define a var using <kbd>d</kbd>, a var name can be suggested (default none).
613+
You can customize this value via the <code>cider-inspector-preferred-var-names</code>
614+
configuration option. Even after setting it, you are free to choose new names on
615+
the fly, as you type. Most recent names will take priority in subsequent usages.</p>
617616
</div>
618617
</div>
619618
</div>
@@ -623,7 +622,7 @@ <h2 id="additional-resources"><a class="anchor" href="#additional-resources"></a
623622
<div class="ulist">
624623
<ul>
625624
<li>
626-
<p><a href="https://practicalli.github.io/spacemacs/evaluating-clojure/inspect.html">Using CIDER&#8217;s Inspector in Spacemacs</a></p>
625+
<p><a href="https://practicalli.github.io/spacemacs/evaluating-clojure/inspect/">Using CIDER&#8217;s Inspector in Spacemacs</a></p>
627626
</li>
628627
</ul>
629628
</div>

docs/cider/usage/code_reloading.html

+27-2
Original file line numberDiff line numberDiff line change
@@ -525,8 +525,20 @@ <h3 id="configuration"><a class="anchor" href="#configuration"></a>Configuration
525525
</div>
526526
<div class="sect2">
527527
<h3 id="using-clj-reload"><a class="anchor" href="#using-clj-reload"></a>Using clj-reload</h3>
528+
<div class="admonitionblock note">
529+
<table>
530+
<tr>
531+
<td class="icon">
532+
<i class="fa icon-note" title="Note"></i>
533+
</td>
534+
<td class="content">
535+
Support for <code>clj-reload</code> was introduced in CIDER 1.14.
536+
</td>
537+
</tr>
538+
</table>
539+
</div>
528540
<div class="paragraph">
529-
<p>You can also use <a href="https://github.com/tonsky/clj-reload">clj-reload</a> instead.
541+
<p>You can also use <code>cider-ns-refresh</code> with <a href="https://github.com/tonsky/clj-reload">clj-reload</a> instead of <code>clojure.tools.namespace</code>.
530542
It provides support for
531543
<a href="https://github.com/tonsky/clj-reload/blob/469da68/README.md#usage-keeping-vars-between-reloads">keeping vars between reloads</a>
532544
among some
@@ -544,6 +556,19 @@ <h3 id="using-clj-reload"><a class="anchor" href="#using-clj-reload"></a>Using c
544556
. If you don&#8217;t set them manually, it will default to the current project&#8217;s resource dirs in the same
545557
way <code>tools.namespace</code> does.</p>
546558
</div>
559+
<div class="admonitionblock note">
560+
<table>
561+
<tr>
562+
<td class="icon">
563+
<i class="fa icon-note" title="Note"></i>
564+
</td>
565+
<td class="content">
566+
Down the road we may rename <code>cider-ns-refresh</code> to something more tool-agnostic (e.g. <code>cider-ns-smart-reload</code>) to reflect
567+
that it supports different code reload tools now.
568+
</td>
569+
</tr>
570+
</table>
571+
</div>
547572
</div>
548573
</div>
549574
</div>
@@ -564,7 +589,7 @@ <h2 id="basic-code-reloading"><a class="anchor" href="#basic-code-reloading"></a
564589
<i class="fa icon-tip" title="Tip"></i>
565590
</td>
566591
<td class="content">
567-
Theses commands don&#8217;t depend on <code>cider-nrepl</code>, so they are always available.
592+
These commands don&#8217;t depend on <code>cider-nrepl</code>, so they are always available.
568593
</td>
569594
</tr>
570595
</table>

0 commit comments

Comments
 (0)