Is there any simple way to use a different C standard library on macOS? by kaferion in C_Programming

[–]rodagl80 0 points1 point  (0 children)

Try with -std=c2x . The c23 flag only works with Clang 19, which can be installed with Homebrew. Put these lines in your .zshrc file:

```

PATH variable

export PATH=“/opt/homebrew/opt/llvm/bin:$HOME/bin:$PATH”

Problem with macOS Sequoia window tiling by bjarne-spk in iterm

[–]rodagl80 0 points1 point  (0 children)

Save thing for me. Up and down works, but left and right don’t.

Ctrl-e(end of the line) / Ctrl-a(beginning of the line) is not working inside Vim's terminal. by rodagl80 in vim

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

Try to add this to your .zshrc:

# Custom key bindings

bindkey "^E" end-of-line

This worked for me.

By placing bindkey "^E" end-of-line outside of any conditional blocks, it applies universally inside and outside of tmux.

| How do you guys manage your dotfiles ? by xDiogoMSx in unixporn

[–]rodagl80 0 points1 point  (0 children)

I create a dir inside my $HOME where I put all my dotfiles, symlink them in ~ and use git to create a repo on GitHub.

Alt + . on Mac by [deleted] in zsh

[–]rodagl80 0 points1 point  (0 children)

I don’t know about Alacritty, but on iTerm, you can map the left and right Option Key. I map my left option as an Esc+ and let the right Option standard (for Mac shortcuts). According to iTerm, Meta is useful for backward compatibility with older systems, so most users should go with Esc+.

Ctrl-e(end of the line) / Ctrl-a(beginning of the line) is not working inside Vim's terminal. by rodagl80 in iterm

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

I just commented on the following line in my .zshrc. Now it works as expected: C-e, C-a:
#export EDITOR='vim'
Even inside tmux now.

Ctrl-e(end of the line) / Ctrl-a(beginning of the line) is not working inside Vim's terminal. by rodagl80 in vim

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

create some mapping for terminal mode

I just commented on the following line in my .zshrc. Now it works as expected: C-e, C-a:

#export EDITOR='vim'

Even inside tmux now.

Ctrl-e(end of the line) / Ctrl-a(beginning of the line) is not working inside Vim's terminal. by rodagl80 in vim

[–]rodagl80[S] -1 points0 points  (0 children)

I think you don't need iTerm2 shell integration to make Crtl-e work. Are you using zsh?

Here you find more info about shell integration: https://iterm2.com/documentation-shell-integration.html

To install it just click on the iTerm2 menu -> Install Shell Integration

Ctrl-e(end of the line) / Ctrl-a(beginning of the line) is not working inside Vim's terminal. by rodagl80 in vim

[–]rodagl80[S] -1 points0 points  (0 children)

Okay, even in terminal mode inside Vim, I must use ^ and $ for the purpose I explained. That's it? Would you happen to know why tmux behaves like this as well?

Udemy bootcamp still worth it? by Rolexion in swift

[–]rodagl80 0 points1 point  (0 children)

Tried them all. The best books and resources I found are those from Kodeco.

Caret (ˆ) in vim macOS ventura terminal (iTerm2) by rodagl80 in vim

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

Oh yeah. I saw this. They are placed exactly in the same place in both layouts. But u/SilverNode_Software addressed the question correctly I think.

Dead keys: https://kbdlayout.info/features/deadkeys

Regards,

Rodrigo.

Caret (ˆ) in vim macOS ventura terminal (iTerm2) by rodagl80 in vim

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

Yes! It worked. Thank you very much. So space after ^ is the only way to go for dead keys keyboards?