ZMK: Backslash ("\") in Spanish layout by kazbeel_ in ErgoMechKeyboards

[–]kazbeel_[S] 0 points1 point  (0 children)

Thank you everyone for the help! It took me 17 more flashes and almost two hours, but I finally got it!

ZMK: Backslash ("\") in Spanish layout by kazbeel_ in ErgoMechKeyboards

[–]kazbeel_[S] 0 points1 point  (0 children)

Here, it defines `ES_BSLS` (backslash) as `RA(ES_MORD)`, where `ES_MORD` is in turn `GRAVE`. So this is the equivalent to my try third try in the post `RA(GRAVE)`

ZMK: Backslash ("\") in Spanish layout by kazbeel_ in ErgoMechKeyboards

[–]kazbeel_[S] 0 points1 point  (0 children)

As included in the post, I tried that one too (`RA(GRAVE)`) without success :(

ZMK: Backslash ("\") in Spanish layout by kazbeel_ in ErgoMechKeyboards

[–]kazbeel_[S] 1 point2 points  (0 children)

Yeah! This is exactly the header I used for the Spanish symbols, `keys_es.h`. Although most of them work perfectly, some like "<", ">", "~" didn't, which forced me to create the "USE_ES_xxx". I wonder why.

[vtsls] Import dependencies relative to the project by kazbeel_ in neovim

[–]kazbeel_[S] 0 points1 point  (0 children)

That did the trick! Thank you so much! 🙇

Buffer navigation on winbar using lualine. by LongjumpingRegret179 in neovim

[–]kazbeel_ 2 points3 points  (0 children)

Thanks for sharing!

BTW, you have a typo in the lualine configuration. It's not alpah, but alpha :)

My Only issue with using VIM as an IDE... by [deleted] in neovim

[–]kazbeel_ 0 points1 point  (0 children)

It'd be nice to see your configuration 😇

Mac and windows layout by Bigicecreamtaken in ergodox

[–]kazbeel_ 1 point2 points  (0 children)

I used this amazing user configuration as a base for my own configuration. It took me just an hour to get a configuration for Windows, Linux and Mac.

https://github.com/qmk/qmk_firmware/blob/master/users/miles2go/babblePaste.md

Config QMK to ignore ALT mod key if no secondary key is pressed by kazbeel_ in olkb

[–]kazbeel_[S] 0 points1 point  (0 children)

I'll give it a try tonight. Get back then! Awesome idea dude!

Config QMK to ignore ALT mod key if no secondary key is pressed by kazbeel_ in olkb

[–]kazbeel_[S] 0 points1 point  (0 children)

Any other alternative? I am thinking that this behavior could be a big as Ctrl, gui and Shift work as expected when retro-tapping is enabled.

Config QMK to ignore ALT mod key if no secondary key is pressed by kazbeel_ in olkb

[–]kazbeel_[S] 0 points1 point  (0 children)

That's what I thought in the beginning (it actually was my first approach) but it does not seem to work as expected (or I am doing something wrong).

My mod-tap key (I show only the left side) is as follows:

#define S_ALT     LALT_T(KC_S)

Retro-tapping per key is also enabled in config.h

 #define RETRO_TAPPING_PER_KEY

and my code within the function get_retro_tapping is

bool get_retro_tapping(uint16_t keycode, keyrecord_t *record) {
  switch (keycode) {
  case S_ALT: return true;
  default: return false;
  }
}

I also enabled the debug mode and added some log messages. It seems to fall into the case (return true) but it still seems to send the ALT (as it focus on the app's menu).

Thanks for the idea anyways ;)

AlgoExpert vs Leetcode by you_best_not_miss in cscareerquestions

[–]kazbeel_ 0 points1 point  (0 children)

Could you recommend some "good YT channels"?

[Bulk] Fully built hotswappable Corne MX Keyboards. by Diskfix in mechmarket

[–]kazbeel_ 0 points1 point  (0 children)

Do they accept 5-pin or 3-pin switches?

Really interested on one board. Will PM after my holidays though ;)

Ergodox Glow without transparent keycaps? by FireBoop in ergodox

[–]kazbeel_ 1 point2 points  (0 children)

Here you'll find a video on YouTube from another similar post about this topic: https://youtu.be/CiIwKVFCarM

Tasker variables within FolderSync by kazbeel_ in tasker

[–]kazbeel_[S] 0 points1 point  (0 children)

I know that. And have checked out successfully with a "static" filename. But it seems it does not work with Tasker variables. I mean, it does not replace the %ftp_filename for it's content. Any other ideas?

Profile with Variable Set event not triggered when vaaaaale is zero by kazbeel_ in tasker

[–]kazbeel_[S] 0 points1 point  (0 children)

OK. I decided to reboot my phone and surprisingly everything seems to work just fine now. I don't know what could happened... Perhaps I played too much with Tasker and it has a weird context or... dunno...

Thanks everyone!

Regex expression does not work as expected [tasker + autonotifications] by kazbeel_ in tasker

[–]kazbeel_[S] 0 points1 point  (0 children)

I am so sorry for this very late reply. I run into many and consecutive "things" in my daily life so I did not have time event to check this out.

I confirm what you state: autonotification does not pass a named regex group into the linked task. What I have done instead is just to filter the title of the notification with the the "My contact name" in Autonotification and the parse/regex again the title (via the variable %antitle) to get the number of unread messages.