<feed xmlns='http://www.w3.org/2005/Atom'>
<title>apheleia.git, branch rr-unmess-ruby</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/apheleia.git/'/>
<entry>
<title>oops</title>
<updated>2022-10-15T00:57:16+00:00</updated>
<author>
<name>Radon Rosborough</name>
<email>radon@intuitiveexplanations.com</email>
</author>
<published>2022-10-15T00:57:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/apheleia.git/commit/?id=c4f3edca970abea58db97eabee3255e607bc75a4'/>
<id>c4f3edca970abea58db97eabee3255e607bc75a4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fetch_depth: 0</title>
<updated>2022-10-15T00:55:06+00:00</updated>
<author>
<name>Radon Rosborough</name>
<email>radon@intuitiveexplanations.com</email>
</author>
<published>2022-10-15T00:55:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/apheleia.git/commit/?id=080e254be0c87a404549e1a402053dab6a4941fa'/>
<id>080e254be0c87a404549e1a402053dab6a4941fa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use checkout v3</title>
<updated>2022-10-15T00:53:37+00:00</updated>
<author>
<name>Radon Rosborough</name>
<email>radon@intuitiveexplanations.com</email>
</author>
<published>2022-10-15T00:53:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/apheleia.git/commit/?id=d31f73ae5e3acabd26784bb65574cfe3e26c74d7'/>
<id>d31f73ae5e3acabd26784bb65574cfe3e26c74d7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'main' into rr-unmess-ruby</title>
<updated>2022-10-15T00:41:48+00:00</updated>
<author>
<name>Radon Rosborough</name>
<email>radon@intuitiveexplanations.com</email>
</author>
<published>2022-10-15T00:41:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/apheleia.git/commit/?id=495650ca9d75dbf5ad602ed94df1f23168688a28'/>
<id>495650ca9d75dbf5ad602ed94df1f23168688a28</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use inplace formatter output (#132)</title>
<updated>2022-10-05T23:19:36+00:00</updated>
<author>
<name>leonidborisenko</name>
<email>leonidborisenko@users.noreply.github.com</email>
</author>
<published>2022-10-05T23:19:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/apheleia.git/commit/?id=aae79b7b2a1a7bc905b005ec3f43feb56918b93d'/>
<id>aae79b7b2a1a7bc905b005ec3f43feb56918b93d</id>
<content type='text'>
When formatting command is defined with symbol `inplace`, it doesn't
work.

I'm using [casey/just](https://github.com/casey/just) (v1.5.0).

It doesn't support formatting of `stdin`, but it supports in-place
formatting with command `just --unstable --fmt --justfile
/tmp/justfile`. So I've added a list to to `apheleia-formatters` custom
variable:

```elisp
(add-to-list 'apheleia-formatters
             '(just . ("just" "--unstable" "--fmt" "--justfile" inplace))
             "APPEND:non-nil")
```

Minimal `justfile` before formatting (there is one space before `echo`):
```make
rule:
 echo test
```

Expected formatting result (there are four spaces before `echo`):
```make
rule:
    echo test
```

Without this pull request there are no visible changes after
&lt;kbd&gt;C-u&lt;/kbd&gt; &lt;kbd&gt;M-x&lt;/kbd&gt; `apheleia-format-buffer` &lt;kbd&gt;RET&lt;/kbd&gt;
`just` &lt;kbd&gt;RET&lt;/kbd&gt;. When this pull request is applied, formatting
proceed as expected.

Co-authored-by: Radon Rosborough &lt;radon@intuitiveexplanations.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When formatting command is defined with symbol `inplace`, it doesn't
work.

I'm using [casey/just](https://github.com/casey/just) (v1.5.0).

It doesn't support formatting of `stdin`, but it supports in-place
formatting with command `just --unstable --fmt --justfile
/tmp/justfile`. So I've added a list to to `apheleia-formatters` custom
variable:

```elisp
(add-to-list 'apheleia-formatters
             '(just . ("just" "--unstable" "--fmt" "--justfile" inplace))
             "APPEND:non-nil")
```

Minimal `justfile` before formatting (there is one space before `echo`):
```make
rule:
 echo test
```

Expected formatting result (there are four spaces before `echo`):
```make
rule:
    echo test
```

Without this pull request there are no visible changes after
&lt;kbd&gt;C-u&lt;/kbd&gt; &lt;kbd&gt;M-x&lt;/kbd&gt; `apheleia-format-buffer` &lt;kbd&gt;RET&lt;/kbd&gt;
`just` &lt;kbd&gt;RET&lt;/kbd&gt;. When this pull request is applied, formatting
proceed as expected.

Co-authored-by: Radon Rosborough &lt;radon@intuitiveexplanations.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for --no-cache</title>
<updated>2022-09-22T21:54:52+00:00</updated>
<author>
<name>Radon Rosborough</name>
<email>radon@intuitiveexplanations.com</email>
</author>
<published>2022-09-22T21:54:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/apheleia.git/commit/?id=cde18fe48d826bab60c41cef8b89e8d8c0846d77'/>
<id>cde18fe48d826bab60c41cef8b89e8d8c0846d77</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix unrelated bug</title>
<updated>2022-09-22T21:50:05+00:00</updated>
<author>
<name>Radon Rosborough</name>
<email>radon@intuitiveexplanations.com</email>
</author>
<published>2022-09-22T21:50:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/apheleia.git/commit/?id=e53f19d676df6fa121e1f03925203e54168e7996'/>
<id>e53f19d676df6fa121e1f03925203e54168e7996</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use origin/main instead of main</title>
<updated>2022-09-22T21:46:32+00:00</updated>
<author>
<name>Radon Rosborough</name>
<email>radon@intuitiveexplanations.com</email>
</author>
<published>2022-09-22T21:46:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/apheleia.git/commit/?id=e959e32f4849da986e72f6789437baa1d54e991f'/>
<id>e959e32f4849da986e72f6789437baa1d54e991f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix linting to actually run</title>
<updated>2022-09-22T21:44:40+00:00</updated>
<author>
<name>Radon Rosborough</name>
<email>radon@intuitiveexplanations.com</email>
</author>
<published>2022-09-22T21:44:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/apheleia.git/commit/?id=82709ef31f24d74e80deb1f44d7cab1687fdfcb8'/>
<id>82709ef31f24d74e80deb1f44d7cab1687fdfcb8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove no longer needed hack</title>
<updated>2022-09-22T21:24:06+00:00</updated>
<author>
<name>Radon Rosborough</name>
<email>radon@intuitiveexplanations.com</email>
</author>
<published>2022-09-22T21:24:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/apheleia.git/commit/?id=3d2c1758b46d2e0c617c1d586f6a9a042e60249a'/>
<id>3d2c1758b46d2e0c617c1d586f6a9a042e60249a</id>
<content type='text'>
https://github.com/ruby-syntax-tree/syntax_tree-rbs/pull/34#issuecomment-1251394959
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby-syntax-tree/syntax_tree-rbs/pull/34#issuecomment-1251394959
</pre>
</div>
</content>
</entry>
</feed>
