jibal
jibal
The organice file browser only displays files with a .org extension, but there's no requirement that org files have that extension (`-*- mode: org; -*-` works fine in emacs). It's...
A link like [[*header]] is a reference to that header in the current file but organice tries to open a file called *header in the current directory.
The reason being that rather than displaying the content passed to it as stdin, eless parses it, finds the man page name, and then invokes the emacs man command with...
emplace could do a much better job of detecting the reasons for failure, but this seems like an obvious one (though the check isn't entirely trivial because you have to...
The semantics of the test-and-set instruction was established back in 1951 on the EDSAC2 and has been propagated in many implementations since: an atomic operation that tests a flag, sets...
The Getters documentation (https://crystal-lang.org/api/1.16.3/Object.html#getters) says ```crystal class Person getter(city : City) { City.unspecified } end ``` Is equivalent to writing: ```crystal class Person @city : City? def city : City...