Markus Engelbrecht
Markus Engelbrecht
For me the `win:maximize()` function requires 3 tries for apps like Firefox Nightly or VSCode to lead to a maximized window (note: I have set `hs.window.animationDuration = 0`). 1. The...
@sjohnr currently it is possible to use e.g. `csrf` with `WebTestClient` in a servlet environment via this workaround: ```kotlin val webTestClient = MockMvcWebTestClient.bindToApplicationContext(webApplicationContext) .apply(SecurityMockMvcConfigurers.springSecurity()) .defaultRequest(MockMvcRequestBuilders.get("/").with(SecurityMockMvcRequestPostProcessors.csrf())) .configureClient() .build() ``` If an...
Thanks for the info. However the code you provided makes the whole xmapsto arrow is invisible (and xmapsto is the symbol I need). If this is currently (and in the...
Using your new code xmapsto works without problems and looks fine. So there is no need for you to investigate the use of mathpazo for this symbol. Thank you very...
The `slimline_setup` function (among other things) initializes zsh-async and starts an async worker. What version of zsh are you using? Does the issue also occur if you try it with...
I am unable to reproduce it on a linux machine. Can you share a minimal zsh configuration which reproduces the issue?
Is there an ETA for this pull request to get merged? Stash support directly in GitX would greatly improve my workflow.
Do you mean a custom string on the left of every buffer name?
I had the same problem. Notifications were delivered but not displayed on the screen. I figured out that the following line was causing the trouble: https://github.com/jaredks/rumps/blob/ae11371bddcafbabc5f62d1eadddf83bfbd653dc/rumps/rumps.py#L1054 After removing that line...
If you need another example on how to integrate git-radar into a prompt take a look at my [slimline](https://github.com/mgee/slimline) zsh theme. The git-radar information is obtained asynchronously which makes the...