Spyke
lemmy.world

I actually learned how to use vi like 30 years ago and I had all the commands memorized. Then, nano came along. All the commands are at the bottom of the screen to remind you. It was just too tempting to pass up. However, I can't help but suspect that somewhere out there I might have left a vi session open because maybe I mistyped. I might have accidentally typed ;q! instead of :q! or something.

40
lemmy.world

I get stressed out every time I need to jump into a server and check something and the only editor is vi. If I can I install nano straight away. Btw, :q! does nothing without pressing ESC first! Hehehe

9
lemmy.world

I'm feeling old now... I've been using vi for 35y now and was happy when I got vi.exe on a dos box, as I hated edit. I still don't like 'simple' editors like nano/joe.

I used kill to get out of emacs when trying it agter 7y of vi usage, so I get the need to get mideval on editors users aren't used off. ;)

8
lemmy.world

vi has always been my bane because I'm a sloppy typist. I can't count the number of files i had to fix because they ended with :q i like nano because the commands are ctrl + whatever. i don't make a mess.

8

I'm a sloppy typer as well, but somehow I notice my mistakes while I make them and correct them on the go.

What doesn't help is that the readout of the keyboard hasn't changed (got faster) since decades, which sometimes hinders me more then my sloppyness.

2
glibg10breply
lemmy.ml

All the commands are at the bottom of the screen to remind you. It was just too tempting to pass up.

But you already had the Vi commands memorized. Did you forget them in the meantime?

0
    • Esc × 2
    • CTRL-[ × 2
    • CTRL-\ CTRL-N × 2
    • :q
    • :qa
    • :wq
    • :wq!
    • :wqa
    • :x
    • ZZ
    • :q!
    • ZQ
    • :q!
    • :cq
25
lemm.ee

Nano is pretty good if you're in a terminal. Used to use vim for ssh related stuff but since nano added syntax highlights I didn't go back.

16
glibg10breply
lemmy.ml

Nano's only appeal is that it's beginner-friendly, but you already know Vim, so why switch?

6
Asukareply
sh.itjust.works

Because Nano just works. Vim is insane affront to good design and standards.

4

I've always used the stock configuration and never had issues

1

Don't get it neither, vim is hard to start but once you're a bit familiar with it it's kind of time saving imo

I'm not even close to master it (just basics editing) and still find it quite better

1
glibg10breply
lemmy.ml

Because if there's something that Nano does better than Vim, I'd love to know what it is so I can make use of it

Nano fits their workflow better than vim. Same for me.

What's your workflow?

1
ninboyreply
lemmy.sdf.org

Because if there’s something that Nano does better than Vim, I’d love to know what it is so I can make use of it

What nano does better: being more user friendly and showing you the most common actions in the bottom part of the editor. A tool to do quick edits without needing to learn specific keystrokes for everything you want to do.

4
glibg10breply
lemmy.ml

@[email protected] already knows Vim, though:

Used to use vim for ssh related stuff

That's why I asked:

Nano’s only appeal is that it’s beginner-friendly, but you already know Vim, so why switch?

Why would someone switch to a more user-friendly editor when they're already used to their current editor?

What does user-friendliness have to do with workflow?

0

I barely know Vim compared to a seasoned programmer. I can open copy save and input mode just fine. All I use it for is fucking with config files and light scripting really.

I did start with vim tho because I didn't know about nano and when I did it was bare bones. Today it has syntax highlights so that's a great thing.

I keep vim around though but nano is way better than it was when Ubuntu first came out so shouldn't be slept on. If you're gonna do actual programming yes pls use vim I beg you 😂 or better yet an IDE.

2

Micro exists. It's Nano with Lua plugins. Very robust and minimalist. No magic incantations. I actually use it to code simple stuff that I just don't want to wait a minute for VSCode to spin its wheels.

3
31337reply
sh.itjust.works

WTF. Why? I could maybe see someone preferring emacs over vim, but not nano. Maybe there are nano features I don't know about, but it just seems like Windows Notepad to me.

I normally just use VS Code with a VIM extension. Unless I'm ssh-ing into something, then I use vim.

2

Well, you kind of got it but also didn't I guess. If I want to quickly edit a none critial config file or similar a terminal version of Notepad is perfectly fine and for more complex stuff I prefer a GUI anyway.

5
lemmy.sdf.org

That's how you learn Linux and Google: how to kill vim? kill -9 vim.

11

"vim" isn't a valid PID. I think you meant killall -9 vim

3

Pssh, come on, it's just :q or :q! - couldn't be simpler or more intuitive!

9
lemmy.world

My main problem with vim is that they use hjkl instead of jkl; , it doesn't make sense to me why they'd do that.

And my second problem is that I use my own custom keyboard layout instead of qwerty, so I'd have to remap all the keys. Why spend hours learning and then rebinding all the keys when I can instead play some Dota? /s

9
evranchreply
lemmy.ca

Been a vim user for decades but never used hjkl. Probably strongly correlated with the fact I'm non QWERTY as well (Dvorak). I just use the arrow keys combined with the jumps to start/end of lines/words or to characters.

You don't need to remap anything aside from hjkl as the keybindings are mostly mnemonic and not location based.

On Dvorak at least, ^C is so easy to press that it's great for switching modes, I never use Esc.

I find the more time you've spent in non-graphical shells, especially on low spec devices or laggy connections, the more you appreciate vim. Instead of pressing Del a bunch of times and having it overrun you can ct" to swap out that string. I even use vim keys in vscode, as my hands are so used to them.

My biggest complaint is logging into some legacy device that only has vi and not vim, when shortcuts like "dap" or "caw" don't work

3
Araozureply
lemmy.world

Huh, I thought most keybindings where tied to the position of the keys, being vim "motions", as in how you move your fingers or something like that.

Maybe there are vim layouts for dvorak that I can use? Because I think I'd prefer to have the keybindings in the same place.

I use a dvorak-based layout personally, but spanish QWERTY at work. Some time ago I learned EMACS with qwerty, so when I switched to dvorak my muscle memory was ruined, even if I knew the keybindings. I wonder if it's worth it learning 2 keybindings to be able to switch layouts

1

Not really key position based, they're mostly things that match the letters like (i)nsert (a)fter (A)fter the whole line (d)elete (dd)elete a line (c)hange (C)hange rest of line.

Then the fancier ones like ct (c)hange(t)o which will remove the text from the cursor to the next character you hit. i.e. go to the open quote of a string, ct" replaces everything up to the end quote.

(c)hange(a)(w)ord will replace a word, (c)hange(a)(p)aragraph will replace a whole block... putting a number in front of the command will repeat it like 5dd to delete 5 lines.

I agree the muscle memory is a big thing but I use vim on both Dvorak and QWERTY (when I happen to be on site and not wanting to mess with changing keyboard layouts) and while I'm slower, it's just the ordinary slowness that comes with not using QWERTY very often these days. I think of the commands as being the letters, not their positions.

More to the point would be that if you're already an EMACS user maybe learning vim is not that important? Though it does tend to be more common to find some sort of vi on even minimal hardware than to find EMACS.

Strangely I use QWERTY on my phone and would find Dvorak odd for this purpose.

Edit: looks like ( c ) got turned into the copyright symbol thanks to some overeager parser

1
Asymptotereply
lemmy.dbzer0.com

My main problem with vim is that they use hjkl instead of jkl; , it doesn't make sense to me why they'd do that.

With qwerty you can be sure of layout of the letters and numbers across languages.

3

Makes sense. Spanish keyboards have Ñ instead of semicolon, so it'd break. But I'm sure other things break in France, where they use AZERTY. So it's not that universal.

That makes me wonder, is there a way to get a keypress based on the position of the key, rather than the keycode? Would that be useful? Would assuming everyone is using a normal keyboard with letters in the same place even make sense? How would that interop with things like QMK?

2
hedge.town

I took the vim pill a few years ago and spent tons of time learning its shortcuts, trying out plugins, and forming strong opinions about my relationship with my text editor. It's a great tool, but I personally lost the plot somewhere down the line. I'm not sure that passion actually served me.

7

I love using vim, but I'm not great at it. I'm just happy I completely understood this.

2
glibg10breply
lemmy.ml

And don't forget :

Also, YSK this clears your file

1

Remember to actually kill the process though, since that will only background/suspend it in most cases.

(Be sure to save the file though first, Vim creates a "swap" / recovery file but its best to not rely on that, use fg to re-open, then press escape and type :wq)

4

Followed by kill -9 %1 to actually kill the process, otherwise your terminal might complain or freeze up when you try to close it

3
lemmy.world

Vim is crap. If a fucking text editor is hard to master, it's just a bad text editor.

2
lemmy.world

It may seem that way because it's a complete paradigm shift of how you interact with an editor. Once you understand that, then it becomes a very valuable tool that will make you more efficient. It is a big time investment but the payoff is worth it.

I still need to use IDEs for software development at work but I have to have some sort of Vim emulation on top of them.

1
lemmy.dbzer0.com

I am curious

How does it pay off?

Ive used vim to edit some git commits. Thats really it

But a colleague use it for coding

2

It helped me break the habit of needing to use arrow keys / mouse for navigating around text. Why is this important? The 1-2 seconds to reach over from home row add up. For example, instead of scrolling the mouse several turns to get to the top of a file, I can just type gg. All without needing to strain my wrist to reach over for the less efficient methods.

Once you master navigation with just keyboard (sans arrow keys) you really feel like a speed demon and the alternative begins to feel clunky. It may not seem like it at first because you have to retrain the way you interact with text files that goes against the habits you're used too.

Apart from that, for any sort of Linux server management, vim or vi are usually installed so it's a good skill to have if you quickly need to tweak a config for example. Nano works but is less efficient from an editing perspective.

I work in the terminal a lot and also use tmux with vim keybindings. I love being able to navigate entirely mouse free.

I use Vim emulation wherever possible. I enjoy using a web browser with vim keybindings to navigate around and reduce mouse usage. Vim is a paradigm that many tools incorporate or have plugins to do so because it is just that useful once you learn it.

Vim is not meant to be an IDE. Things like intellisense don't work (as) well from my experience. But I just use vim plugins in my IDEs so I can get best of both.

2
cloudy1999reply
sh.itjust.works

I respectfully disagree. Vim is an excellent editor and is the centerpiece of my dev tools. Counting out the newer features in Neovim like language server and treesitter support, traditional Vim is still a powerful modal text editor with robust features like text objects, macros, sed-like search and replace, rich syntax highlighting, code folding, online help, endless customizability through scripting, and multiple ways to exit. It is an acquired taste though, and I understand it's not for everyone.

1

Exactly, you wouldn't say that to your grandma ! only to other sysadmin sect members.

I like how this is so controversial, 12 upvotes 12 downvotes

0

ESC ESC ESC ESC ESC ESC ESC ESC ESC :q! Or alternatively ESC :q!

1
IjonTichyreply
lemmy.world

No it isn't, it respect's ctrl+c, SIGINT and gives useful feedback for new users. Many shortcuts are immediately shown on screen.

21
Sörenreply
iusearchlinux.fyi

If you open vim the first thing you will see it's a text describing how to close it. Not saying other things are easier for a new user but closing is pretty simple. EDIT: if press ctrl - c vim will show you what you should press instead

12
iusearchlinux.fyi

And the whole time you have nano open it shows you all the shortcuts how to save and close at the bottom, so no, closing nano is not harder.

14
iusearchlinux.fyi

Then you press ctrl+g for help and it tells you:

Shortcuts are written as follows: Control-key sequences are notated with a '^' and can be entered either by using the Ctrl key or pressing the Esc key twice.

:D

Actually TIL about pressing esc twice.

11

I'd argue closing vim is still easier. You just have to hold down the power button long enough.

9
Jeanschysoreply
lemmy.world

I had to look up the upside down V meant Ctrl, which makes sense to me now that I know, but I had to Google that.

3

Or you could look on the bar above the shortcuts that explicitly says Ctrl+G = help

2
danieltonreply

Nano is overrated. I tell everyone who needs to edit from the terminal to use vimtutor. You'll never go back to Nano.

2

Reaching over to CTRL every time you want to copy some text, delete a word, delete the next character or perform any other basic edit starts to take a toll on your hands after 20 minutes

1
Sage1918reply
lemmy.world
  • Teleportation: the cursor can be teleport to any line without pressing down key multiple times...

  • Macro: for repeating a sequence of inputs multiple times...

  • Tabs: nano can't open multiple files at once i believe...

  • Split screen(horizontal and vertical)

  • Themes and plugins

These are a few that comes to mind...

1

Vim has things like copy and paste, including being able to highlight text, search and replace, and I find its commands a lot less clunky than Nano's. I am not a software developer or a sysadmin, just someone who uses Linux for fun. All of this stuff works without having X or Wayland running too.

1
Zoidbergreply
lemm.ee

Nano is the MS notepad of Linux. No more, no less. You don't have the initial cost of learning vim with nano but in the end you're working more. I really don't understand how people can be productive without things like complex regexps, global commands, piping from the editor, etc.

0

Learning the basics of vim makes setting up a Linux system a lot easier. That's all I'm saying. You don't need to learn regexes or anything like that.

0

I totally agree. The point is that learning the more advanced features will pay off in the future.

0
lemmy.world

Ah, "good" old non-funny "can't exit Vim" "jokes" that never go out of style. Let's just all agree you should go back to using browser to write your code up to limited size due to JS limitations and leave the rest of us to "suffer" with out archaic tool that does what it's told without trying to be a smartass.

-13

I don't think the joke is meant to be an attack on Vim. It's just making light of a relatable experience

4