Brian Hicks

Results 85 issues of Brian Hicks

Hey! Like https://github.com/mawww/kakoune/issues/3059, my `kak` has trouble displaying emoji. Unlike that poster, I see hardly any emoji at all for [an emoji prompt definition](https://github.com/irevoire/dotfiles/blob/master/zshrc#L50-L76): ![image](https://user-images.githubusercontent.com/355401/125091524-1bbcb400-e096-11eb-97f8-06f859437697.png) `:help keymap` also has some...

I have reproduced the following minimal state machine: ```ruby class Machine include AASM aasm do state :open, default: true state :closed event :close, unless: :some_validation do transitions from: :open, to:...

#I have several stages which I want to compose together to a top-level state machine, such that I can hook them up to describe different processes. So if I'm writing...

If a downstream package specifies a maximum version while `elm-package.json` specifies a version above that, the maximum downstream version will be selected rather than the explicitly set one. The SSCCE...

When I do this: ```nix { users.users.brianhicks.packages = [ pkgs.emacsMacport ]; } ``` I expect `Emacs.app` to be available somewhere—maybe in `~/Applications/Nix Apps`. But it's not! However, if I do...

When writing conditionals, I frequently want to format using newlines. Say I have the following snippet from using elm/parser: ```elm chompWhile (\c -> c /= '[' && c/= '*' &&...

discussion
0.9
full operators list

Unmarshalling embedded struct fields works in `encoding/json` but not HCL (as of 5b7dbf7eefffea49afb3c9655d6582c72fae5fd1). Here's the code using `encoding/json`: https://play.golang.org/p/rrXXw7j8VM. The equivalent in HCL follows: ``` go package main import (...

v1

Hey! I pulled 1eee0d3 into a project to add JavaScript support and I'm getting these errors from `cargo`: ``` warning: vendor/tree-sitter-javascript/src/scanner.c:10:60: warning: unused parameter 'p' [-Wunused-parameter] warning: void tree_sitter_javascript_external_scanner_destroy(void *p)...

enhancement
priority:low

Using 528b5e47ec9c29fbbd470f2af71b8ad994a96bdb, neovim v0.3.8 When I run `:Neoformat` using the rubocop formatter, my buffer gets erased. Here's what the output looks like with `g:neoformat_verbose = 1`: ``` Neoformat: executable: rufo...

Hey there! I'm trying to generate Dhall APIs for some Kubernetes CRDs, specifically these: - https://github.com/argoproj/argo-cd/blob/master/manifests/crds/application-crd.yaml - https://github.com/argoproj/argo-rollouts/blob/master/manifests/crds/rollout-crd.yaml I'm having trouble, however, because `openapi-to-dhall` generates deeply nested types. That means...

question
dhall-openapi