• 0 Posts
  • 4 Comments
Joined 1 year ago
cake
Cake day: January 23rd, 2025

help-circle
  • Does it, if you can work on the normal application code, there’s no reason you can’t work on the lower levels of applications. It’s all just code. Ramp up might take a bit more time, but I wouldn’t expect horrendously so. As long as your patterns make sense and what is there is written well enough and is not a spaghetti monster in the making, any one should be able to pick it up.




  • The simplest and slowest way when you need to use something from the system clipboard:

    Copying: Enter visual mode (v) Highlight the text I want to copy then enter in command mode "+y which basically means “Use a register for following command (”) make it the external clipboard register (+) and yank/copy (y)"

    Pasting Move to where I want to paste then enter in command mode "+p to paste after the current position or "+P to paste before the current position

    If I don’t need to copy/paste stuff to applications outside of vim, then I can skip the "+ register setting part, and just use the default internal register.