Sergey Volkov

Results 11 comments of Sergey Volkov

Does completion works after function name fix? For me (fish 3.1.2) it doesn't. After changing `complete -c ./foo/bar/baz -f -a '(__fish_foo_bar_baz_complete)'` to `complete -c baz -f -a '(__fish_foo_bar_baz_complete)'` completion starts...

> fixed in fish 3.3.0. Nice! Relative paths should be also supported in generated script body - running completion from different directory would fail now. Probably it's better to use...

After fish-shell/fish-shell#6001 completion registered via `complete -p /home/auser/myscript ...` work for `/home/user/myscript` and `./myscript` but not for `~/myscript`. @faho is this expected or it should be reported? There is workaround:...

I'm currently using [custom branch](https://github.com/volkov/garmodoro/blob/feature/activity-recording/source/GarmodoroDelegate.mc#L146) where each pomodoro recorded as activity. Then I think number of pomodoros could be counted in connect. I think it's possible to make recording optional...

> i ve no idea how i can install the custom fork on my garmin... You could checkout this branch, build and upload. Actually last time I build it more...

@klimeryk What do you think about recording pomodoros as activity? Is it good feature or it's better not to implement it?

Well, not really god, after some pomodoros you see only them. Screenshot and photo ![photo_2022-02-23_13-51-02](https://user-images.githubusercontent.com/459989/155305398-7173c2eb-da89-4368-8bdf-3f91e1e0158c.jpg) ![photo_2022-02-23_13-51-08](https://user-images.githubusercontent.com/459989/155305405-4610c0e1-cc2d-452e-bc7d-01cf9eed2211.jpg) For me this feature was useful in three ways: * additional motivation to do...

I've made some very dirty proof of concept realization for fish completion in #1925 It successfully generated completion for my simple app, but it's definitely not universal at the moment....

Yes, I have begun to move towards testing, however, my progress is currently moderate as I am not familiar with dejagnu I think I'll be back in couple of weeks.

> Were you able to make dejaGnu start a `fish` shell session instead of a `bash` session? Yes, At the moment I use separate file [dejagnu.fishtests/lib/completion.exp](https://github.com/remkop/picocli/blob/5b1cbc89b60baa04c8695b49f4ccb5927e36885a/src/test/dejagnu.fishtests/lib/completion.exp) with `exp_spawn fish --no-config`...