@@ -393,12 +393,26 @@ CIDER provides a more complex version which does classpath analysis.")
393393 " The base URL for official Clojure guides." )
394394
395395(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" )
396401 (" FAQ" . " faq" )
397402 (" spec" . " spec" )
403+ (" Reading Clojure Characters" . " weird_characters" )
398404 (" Destructuring" . " destructuring" )
399405 (" Threading Macros" . " threading_macros" )
406+ (" Equality" . " equality" )
400407 (" 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" ))
402416 " A list of all official Clojure guides." )
403417
404418(defun clojure-view-guide ()
@@ -438,7 +452,8 @@ The command will prompt you to select one of the available guides."
438452 (" Java Interop" . " java_interop" )
439453 (" Compilation and Class Generation" . " compilation" )
440454 (" Other Libraries" . " other_libraries" )
441- (" Differences with Lisps" . " lisps" )))
455+ (" Differences with Lisps" . " lisps" )
456+ (" Deps and CLI" . " deps_and_cli" )))
442457
443458(defun clojure-view-reference-section ()
444459 " Open a Clojure reference section in your default browser.
0 commit comments