|
|
|
|
|
by lucb1e
2017 days ago
|
|
TIL vim has encryption. If you're annoyed by typoing stuff, like I'm annoyed by typing :Wq or :WQ, you can just alias it of course. Since you (and, presumably, nobody) ever use(s) vim encryption it doesn't matter to override it. vimrc: command Wq wq
command WQ wq
command W w
command Q q
|
|