Results 13 issues of Matt Fowles Kulukundis

https://github.com/erniebrodeur/ruby-beautify

new formatter

We must go deeper.

new formatter

Add support for moving an object into or out of the parameter list: `foo.bar(1)` -> `bar(foo, 1)` `foo->bar(1)` -> `bar(foo, 1)` and `bar(foo, 1)` -> `foo.bar(1)`

Various code generators and languages have interesting non-overlapping sets of keywords. Protobuf as a whole does not handle these things consistently (sometimes it mangles them, sometimes it generates code that...

help wanted
protoc

The existing setup with subdirectories lacks the simplicity users want from a fire and forget start project. https://github.com/fowles/abseil-hello Switches to a structure where each branch contains *only* the information needed...

- Allow `.jj` dirs to count as vcs directories. - Simplify the control flow around resolving info/exclude

The usage of this is not tied into the rest of `jj` so I have not updated the changelog, but I would like to move forward with this. # Checklist...

# Checklist If applicable: - [x] I have updated `CHANGELOG.md` - [x] I have updated the documentation (README.md, docs/, demos/) - [x] I have updated the config schema (cli/src/config-schema.json) -...

Config.toml: ``` [ui.diff] tool = "ls" [merge-tools.ls] diff-args = ["-la", "$left", "$right"] ``` Setup dir ``` $ ln -s .gitignore .ignore ``` Behold ``` jj diff --tool ls .../left: total...

I recently tried to use `jj` to push to github. The error I got was very perplexing to me. In particular I saw this. ``` [sonmi]~/dev/protobuf$ jj git push Branch...

enhancement🏗️