Just keep grinding and coding as much as you can; there is no secret sauce or shortcut for that. I wish you all the luck!.
@christopherbinkley687917 күн бұрын
What's the plugin you use for the menu that pops up after typing c for change?
@spithacode10117 күн бұрын
It's called which-key.nvim. You can find it here: github.com/folke/which-key.nvim
@babybroccoli18 күн бұрын
just use 'mbbill/undotree'
@spithacode10118 күн бұрын
The plugin is so cool, to be honest. I'm planning to release a video about it soon.
@bbahes23 күн бұрын
Is this Neovim or you use plugin for this? In my Fedora 41/Debian 12 vim by default I can't use f and t.
@spithacode10123 күн бұрын
t and f are standard Vim keybindings. It's true that I'm using a plugin for extending the default behavior of t and f, which make you able to jump to occurences that are on the entire file when keeping pressing on ";". by default, when you keep pressing on ";" you will only jump to the character occurences that are available on the current line. The plugin name is flash.nvim you can find it here: github.com/folke/flash.nvim
@SlideRSB25 күн бұрын
This also works for hexadecimal or octal numbers. Numbers with a leading zero are treated as octal while numbers prefixed with 0x are treated as hexadecimal.
@spithacode10124 күн бұрын
I've never tried it on nondecimal numbers before. Thank you for the great information!