553
You don't need the mouse (lemmy.blahaj.zone)
top 50 comments
sorted by: hot top controversial new old
[-] lord_ryvan@ttrpg.network 5 points 5 hours ago

Why are you using Vim for this? Vim actually allows you to change the cursor position and select text with the mouse if your terminal supports it.

[-] frigidaphelion@lemmy.world 48 points 17 hours ago

I always found it weird that tony said this because like he is also pretty much nothing without his suit?

[-] Zoboomafoo@slrpnk.net 1 points 53 minutes ago

Wasn't this the plot of Iron Man 3?

[-] dragonfucker@lemmy.nz 14 points 8 hours ago

Take away the suit, and Stark is still the guy who made the suit.

[-] LavenderDay3544@lemmy.world 9 points 9 hours ago

Not at all.

He's a billionaire genius playboy philanthropist.

[-] Couldbealeotard@lemmy.world 27 points 13 hours ago

Stark made the suit with no help. He doesn't need a specific suit because he has the skill to invent whatever he may need.

At this point, Peter can't make himself a suit like that, so if he is nothing without it, he can't respect the power it brings. But he isn't nothing without it, which is what Stark is trying to teach him: not to rely on power of others.

[-] Rhaedas@fedia.io 59 points 17 hours ago

Steve Rogers: Big man in a suit of armour. Take that off, what are you?

Tony Stark: Genius, billionaire, playboy, philanthropist.

Tony was being snarky, but he's not wrong about the suit being just an extension. Yes, it's important to his abilities, otherwise he wouldn't have needed it from the beginning in the cave. But it's also not a crutch, as Ironman 3 showed and taught him, and he's trying to show Peter that it begins with the person.

Also keep in mind what he said to Peter in this same scene - when Peter said he just wanted to be like Tony, Tony comes back and says yeah, and I wanted you to be better. Tony knows that Peter truly doesn't need the suit because he is that powerful, it's just once again an extension that enhances those abilities, and if Peter thought it was the suit that made him special he wouldn't grow.

[-] Thcdenton@lemmy.world 13 points 17 hours ago

The suit is merely a product of his true power

[-] Ephera@lemmy.ml 63 points 19 hours ago

Recently had to edit the hosts-file on a remote host, and I don't know if using two proxy jumps to SSH into it broke it, but it just wouldn't let me select text with the mouse.
I had to duplicate seven lines and edit the IP addresses, and without being able to copy-paste, I already saw myself manually typing it out.

Then I remembered that in Vim, you can do d5↓ to delete 5 lines. Surely that would also work with copying/yanking. And yep, a y7↓ and a paste later and I had duplicated the lines.

Then use the multi-line cursor like I routinely do for changing all 7 IP addresses...
...and now I feel like I've crossed the line where people will think I'm just a wizard.

[-] SpaceNoodle@lemmy.world 27 points 18 hours ago

Ctrl-K and Ctrl-U in nano, a sane editor that does not hate you

[-] mosiacmango@lemm.ee 8 points 6 hours ago

Vim doesn't hate you. It loves who you could be.

[-] SpaceNoodle@lemmy.world 4 points 6 hours ago

I wish I could :q! you

[-] eager_eagle@lemmy.world 28 points 18 hours ago

Ctrl-X Ctrl-V in micro, if you appreciate a sane editor with sane keybindings.

[-] SpaceNoodle@lemmy.world 7 points 17 hours ago

That's cool, and I can't wait for it to gain widespread adoption, but nano is already more commonly installed by default.

[-] fl42v@lemmy.ml 1 points 11 hours ago

"Sane" keybindings are questionable given Ctrl's location (painful to press with both pinky and thumb fingers). It's standard, I'll give it that, but those in helix or vim are mostly (I'm looking at you, navigation between splits) much saner all things considered

[-] eager_eagle@lemmy.world 1 points 10 hours ago

or maps your caps to Ctrl, like vim users map it to esc

[-] computergeek125@lemmy.world 1 points 8 minutes ago

Which is exactly where Sun Unix keyboards place it, in a same spot

[-] fl42v@lemmy.ml 1 points 5 hours ago

Or build yourself a crkbd, yeah. That's beside the point.

load more comments (7 replies)
load more comments (7 replies)
[-] Coolcoder360@lemmy.world 5 points 16 hours ago

Just switch to visual mode and select the text and yank it.

Press v where you want to start the selection from (switches to visual mode), hjkl (or arrow keys) to move the cursor to the end, then you can yank it from there. It'll highlight what you're selecting just like you're using your mouse, but you're using the keyboard.

If you want to get really fancy there are 3 different kinds of visual mode, but lower case is the most often one that I use because it's char by char, V is line by line, Ctrl+v is "block" (you can select chunks across several lines omitting things at the beginning or end of lines).

Ctrl+V to do the block mode is nice if you need to edit the same part of several lines that all line up vertically, you just Ctrl+v, jk to select the lines, then I (shift+i) to insert on all those lines (if you're in vim you can delete things in insert mode also, if you're in vi you'll need to delete first then insert)

[-] Ephera@lemmy.ml 1 points 8 hours ago

Yeah, when I then used Visual Block mode to do the multi-line cursor, I realized I probably could've selected+yanked it that way, too.

But that is some good info nonetheless. I wasn't actually aware of the different Visual modes...

[-] jaybone@lemmy.world 4 points 16 hours ago

Had not heard of block mode. I need to try this.

[-] fl42v@lemmy.ml 1 points 11 hours ago

y6jjp is generally faster, tho, as long as you know you need exactly 7 lines or happen to have :set nu rnu in your config. Also, if using nvim, having yanks highlighted helps immensely

[-] dQw4w9WgXcQ@lemm.ee 2 points 8 hours ago

I might be in a minority of this, but using numbers that way breaks my flow for 2 reasons: Firstly, any number of lines greater than around 3 or 4 means I have to stop and manually count. Not that counting to 6 takes a long time, but it does use some mental capacity while I want my mind focused on the actual code. Secondly, I don't have touch typing in my fingers for the number line on my keyboard. If I need to type a number, I either have to look down at my keyboard, or move my hand over to the numpad. In both cases it would be quicker for me to Vjjjjjy.

[-] fl42v@lemmy.ml 2 points 5 hours ago

manually count

That's why rnu (i.e. relative numbering) is mentioned, tho

[-] leisesprecher@feddit.org 4 points 16 hours ago

The real question is why you're torturing yourself by manually fixing that stuff? Don't you terraform your Ansibles?

[-] Ephera@lemmy.ml 1 points 8 hours ago

That is a very good question. It all started as a dainty test setup, and I guess, we had lost the routine of always scripting hardware setups, because our previous project hadn't required it.

Obviously, the second-best time to start doing it is now, but I'd need to properly learn one of these first to be able to lead the way on that.
Which collides with me not really wanting to use any of the ones I've experienced so far (Ansible, Puppet) in my freetime. 🫠

[-] leisesprecher@feddit.org 1 points 5 hours ago

Ansible is actually pretty nice, if you get the hang of it. Not perfect, but better than triple tunnel ssh.

You could simply automate step by step, each time you change something, you add that to the playbook and over time you should end up with a good setup.

Flakey dev setups are productivity killers.

load more comments (1 replies)
load more comments (1 replies)
[-] JoYo@lemmy.ml 13 points 15 hours ago

ive been doing this for long enough to know you can use any text editor without a mouse.

[-] nickwitha_k@lemmy.sdf.org 24 points 18 hours ago

One of the things that really, really annoys me when I get lazy and use a pre-bundled set of (neo)vim plugins is how every one of them uses mouse functionality. I only use the mouse to copy/paste from the terminal to system clipboard. I don't want it hijacking him and entering visual mode.

[-] electricprism@lemmy.ml 6 points 17 hours ago

does this suggest that copy/paste from the terminal is broken by design and we need find a better way?

[-] fl42v@lemmy.ml 4 points 12 hours ago

Vim has a better way, it's called :set clipboard=unnamedplus (alternatively, one can bind anything else to copy/paste to/from system cliboards). Not sure why would one use a mouse for this, honestly

[-] smiletolerantly@awful.systems 2 points 7 hours ago

I think if you want to copy a specific selection to a mouse-based, different program then it makes sense to use the mouse for precision selection.

[-] nickwitha_k@lemmy.sdf.org 6 points 17 hours ago

I like your thinking. Give me Firefox with a TUI and POSIX shell i/o redirection support.

load more comments (2 replies)
load more comments (4 replies)
[-] OpenStars@piefed.social 14 points 19 hours ago

Okay but... obligatory "gVim offers the best of both worlds by offering use of a mouse if you want it". There are also native ports for Mac OSX and Windows, etc.

Vim, in contrast, is a command-line program, suited for e.g. working with a text file on a remote server that may not even be running an X-windows interface, or maybe the user simply did not bother to connect to it:-).

Okay, we may now proceed with the humorous jesting:-).

[-] azertyfun@sh.itjust.works 6 points 13 hours ago

Or just :set mouse=a if your terminal emulator was updated in the past decade. gVim has nothing to offer anymore, except that it bundles its own weird terminal emulator that doesn't inherit any of the fonts, themes, settings or shortcuts of one's default terminal. Blegh.

Also if you're not going to leverage Vim's main feature and just want to click around on stuff, just install VSCod(e|ium), which is genuinely amazingly good.

[-] OpenStars@piefed.social 2 points 12 hours ago

Absolutely. Plus the keyboard shortcuts are just outstanding - e.g. shift-M takes you to the middle of the screen - and you can even programmatically do things like make changes to every other line within the range 100-1000 but nowhere else, and even then restrict the changes to only those matching a pattern.

And it is installed on most every machine in the world - even Windows is putting bash onto things these days (I forget if that is still optional, admittedly I haven't touched Windows in nearly a decade:-P) - and has been since virtually the dawn of computing, certainly long before the modern age. :-D I've used ssh on a fucking blackberry and edited files with vim before smartphones existed!

It is, however, notably hard to learn to use, I grant that:-).

[-] Evil_Shrubbery@lemm.ee 6 points 17 hours ago

Imagine using you mouser to click on all the things, like a pleb.

Mice are for fps.

/s
(well, only like 62% sarcasm tbh)

load more comments
view more: next ›
this post was submitted on 26 Oct 2024
553 points (97.1% liked)

Programmer Humor

32305 readers
763 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS