David Barnett
David Barnett
Codefmt raises a few questions like [why not just use formatprg](https://www.reddit.com/r/vim/comments/2uab1g/codefmt_a_plugin_for_formatting_code_using/co6lljx) that we should officially answer in the docs, pbb in README.md. I added a bit of FAQ content to...
Would be nice to have some practical examples in the docs of how to: - Auto-format some filetype excluding certain paths. - Configure default formatter by filetype w/o enabling auto-format....
Formatters right now take a range and modify the buffer as a side-effect, e.g. ``` VimL function someformatter.FormatRange(startline, endline) abort let l:lines = getline(1, line('$')) let l:result = maktaba#syscall#Create(…).WithStdin(join(l:lines, "\n")).Call()...
Some filetypes have terrible default indenting logic (using the = mapping) and also have a formatter fast enough and robust enough to drop in as the formatting implementation for the...
It would be useful to log an info message whenever codefmt triggers and modifies the buffer, especially for cases where it triggers automatically on save. It should be possible to...
A linter for closure stylesheets could detect a lot of simple style issues like unsorted `@requires`, whitespace conventions, etc. Probably there would be some obvious problems to point out globally...
The [homepage for Morph](https://experiments.withgoogle.com/morph) points to this repository for its "Get the code" button. Are there instructions somewhere for building the Morph app so one could make changes and deploy...
If a `:Bazel build` command fails, users should be able to browse the individual error messages from within vim and jump to the referenced file locations via something like the...
It would be nice if the bazel plugin could infer "the target for the current file" automatically so you could just invoke `:Bazel build` or `:Bazel test` as a shortcut...
If you invoke a slow bazel build that takes seconds or minutes, the build will currently steal focus and execute in the foreground, preventing you from doing anything else in...