David James
David James
From: https://boltons.readthedocs.io/en/latest/setutils.html#boltons.setutils.IndexedSet > As you can see, the IndexedSet is almost like a UniqueList, retaining only one copy of a given value, in the order it was first added. This...
I suggest expanding your writeup to include this right after `package-initialize`: ``` elisp (unless package-archive-contents (package-refresh-contents)) ``` Your write-up currently suggests this code: ``` elisp (defvar my-packages '(better-defaults paredit idle-highlight-mode...
I would appreciate if you would share your rationale for CE's design choice(s) regarding extensibility (or lack thereof). What research have you done with regards to extensibility? Have you looked...
I'm walking through the README example, but I get an error (see below). I start a sample project with this `project.clj`: ``` clj (defproject sample "0.1.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.5.1"] [org.flatland/protobuf...
ERB has the whitespace / newline suppression feature, but I have not seen newline suppression of in mentioned in Erubis documentation anywhere. I've also tried it out with no luck....
I'd rather not see log messages when I change directories and the environment is adjusted. How can I turn that off?
Hello, thanks for the project! Background: I've followed the directions. When I run `ktra` for the first time, it appears to hang. (In this issue, I'm not asking for direct...
The `alignColons` [setting][ES], as I understand it, should only impact **colons** (`:`). However, I've noticed that it changes the formatting of **semi**colons (`;`) on the first line in both my...
The parse tree visualization collapses adjacent whitespace. For example. Given a rule matching this string (which includes quotes as part of the match): "a b" (There are five spaces between...
I would like to request an [extension setting][ES] for the formatter to ensure one space before a terminating semicolon. I anticipate this setting applying to short rules when `allowShortRulesOnASingleLine` is...