Replies: 3 comments 3 replies
-
this would not be realistic, no |
Beta Was this translation helpful? Give feedback.
-
I found a semi-satisfying workaround by creating an "empty" task that I can call from the main config file, and implement it the local one:
[tools.lefthook]
version = "1.10"
postinstall = "mise run install-completion lefthook completion"
[tasks.install-completion]
run = '' # implement in mise.local.toml
[env]
LOCAL_FISH_COMPLETION_DIR = "{{config_root}}/.config/fish/completions"
[hooks]
postinstall = 'mkdir -p "$LOCAL_FISH_COMPLETION_DIR"'
[tasks.install-completion]
description = 'Install shell completions'
hide = true
run = '''
{{arg(name="command")}} {{arg(name="completion_command", var=true)}} fish \
> "$LOCAL_FISH_COMPLETION_DIR/{{arg(name="command")}}.fish"
''' (see also #3757) This works as long as all completion commands select the shell by a simple trailing argument; there's only one exception in my setup. Other devs should be able to create their own local config to install, say, zsh completions -- and if not, they get a few empty lines of output during installs. |
Beta Was this translation helpful? Give feedback.
-
Perhaps try something like this, it's seems to works even if I find it quite ugly :
For the record, I did try to do thing like this, but that didn't work : |
Beta Was this translation helpful? Give feedback.
-
I want to commit something like this to my (public) project:
It's important that all contributers (roughly) agree on the version used.
They do not, however, have to use the same shell, so I would like to put this in
mise.local.toml
:My expectation is that mise would merge the local config into the "main" config (knowing full well that merging dicts and arrays can be ... fun 😬). However:
Never mind the duplicate error ( ;) ), but: can we avoid this somehow?
Beta Was this translation helpful? Give feedback.
All reactions