@@ -393,12 +393,26 @@ CIDER provides a more complex version which does classpath analysis.")
393
393
" The base URL for official Clojure guides." )
394
394
395
395
(defconst clojure-guides '((" Getting Started" . " getting_started" )
396
+ (" Install Clojure" . " install_clojure" )
397
+ (" Editors" . " editors" )
398
+ (" Structural Editing" . " structural_editing" )
399
+ (" REPL Programming" . " repl/introduction" )
400
+ (" Learn Clojure" . " learn/clojure" )
396
401
(" FAQ" . " faq" )
397
402
(" spec" . " spec" )
403
+ (" Reading Clojure Characters" . " weird_characters" )
398
404
(" Destructuring" . " destructuring" )
399
405
(" Threading Macros" . " threading_macros" )
406
+ (" Equality" . " equality" )
400
407
(" Comparators" . " comparators" )
401
- (" Reader Conditionals" . " reader_conditionals" ))
408
+ (" Reader Conditionals" . " reader_conditionals" )
409
+ (" Higher Order Functions" . " higher_order_functions" )
410
+ (" Dev Startup Time" . " dev_startup_time" )
411
+ (" Deps and CLI" . " deps_and_cli" )
412
+ (" tools.build" . " tools_build" )
413
+ (" core.async Walkthrough" . " async_walkthrough" )
414
+ (" Go Block Best Practices" . " core_async_go" )
415
+ (" test.check" . " test_check_beginner" ))
402
416
" A list of all official Clojure guides." )
403
417
404
418
(defun clojure-view-guide ()
@@ -438,7 +452,8 @@ The command will prompt you to select one of the available guides."
438
452
(" Java Interop" . " java_interop" )
439
453
(" Compilation and Class Generation" . " compilation" )
440
454
(" Other Libraries" . " other_libraries" )
441
- (" Differences with Lisps" . " lisps" )))
455
+ (" Differences with Lisps" . " lisps" )
456
+ (" Deps and CLI" . " deps_and_cli" )))
442
457
443
458
(defun clojure-view-reference-section ()
444
459
" Open a Clojure reference section in your default browser.
0 commit comments