Recently there was an article that you probably read about the fact that vim is good, and IDE is so-so, typing speed is not the same.
Let me remind you: the main message of the article was that the main killer feature of the Vima is the modes by which everything else is not important. At the same time, the author agreed that there are hot keys in IntellijIdea and other IDEs, etc., which can be fully used. But there are no modes, so vim.
ctrl-
Esc
, e
i
. , ctrl
.
, , vim , , .
, , ? , — caps lock . , . , - , — - , - , — .
, IntellijIdea ( ) , caps lock .
- . , Jetbrains. ( 99% IDE). , . !
:
. ?
, IDE , . !
. IntellijIDEA, .
p
, IDE , , package
? Enter
package .
c
, IDE "class".
(, Habr
), {
IDE .
pu
, IDE , "public". H
Enter
, "Habr", IDE , .
. , init(), . Ide , . alt-enter
, IDE
private void init() {
}
new Habr(5)
( "Habr" , ), .. , IntellijIdea , <alt-ENTER>
, : int int. ide :
public Habr(int i) {
}
.. — .
, :
package x;
class Habr
{
public Habr()
{
init();
}
public Habr(int i) {
}
private void init() {
new Habr(5);
}
}
alt-enter
.
.
.
( , — ).
. alt-enter
( - , " ").
, : , , , ..
, ctrl-W
— , ..
. , x , . ide : ctrl-f
. , , . .
, (ctrl-b
) .
ctrl
- .vim, - . .
, , 100500 . IDE , .
. , . ctrl ctrl-alt-shift . IDE , . IDE - . , .
, , . , — . , , IDE ( ?) .
vim , nano. :
1)
2) , . - — nano .
, , , :)
Source: https://habr.com/ru/post/340376/
All Articles