Vim is hard, I just want to click around
jeffkreeftmeijer.com
Vim is hard, I just want to click around
1–10 of 98 posts
Re: Vim is hard, I just want to click around
#2However, it seems like the author learned the basics of vim, but stopped before he learned about powerful navigation keys, visual mode etc.
I think the moral is: if you feel you don't get the hang of vim/nerdtree etc., don't give up - keep going, there is a reason why so many people use it.
Re: Vim is hard, I just want to click around
#3I too wanted to click around the first month (+/-) after switching to vim, I think we all did. However, it seems like the author learned the basics of vim, but stopped before he learned about powerful navigation keys, visual mode etc. I think the moral is: if you feel you don't get the hang of vim/nerdtree etc., don't give up - keep going, there is a reason why so many people use it.
Re: Vim is hard, I just want to click around
#4I too wanted to click around the first month (+/-) after switching to vim, I think we all did. However, it seems like the author learned the basics of vim, but stopped before he learned about powerful navigation keys, visual mode etc. I think the moral is: if you feel you don't get the hang of vim/nerdtree etc., don't give up - keep going, there is a reason why so many people use it.
Re: Vim is hard, I just want to click around
#5I too wanted to click around the first month (+/-) after switching to vim, I think we all did. However, it seems like the author learned the basics of vim, but stopped before he learned about powerful navigation keys, visual mode etc. I think the moral is: if you feel you don't get the hang of vim/nerdtree etc., don't give up - keep going, there is a reason why so many people use it.
That's exactly why I tried again. The drawer is just a way not to go completely mad when I'm stuck trying to open files "the fast way" and I think these tools make it easier for people to get the hang of it. :)
Re: Vim is hard, I just want to click around
#6Re: Vim is hard, I just want to click around
#7I too wanted to click around the first month (+/-) after switching to vim, I think we all did. However, it seems like the author learned the basics of vim, but stopped before he learned about powerful navigation keys, visual mode etc. I think the moral is: if you feel you don't get the hang of vim/nerdtree etc., don't give up - keep going, there is a reason why so many people use it.
Re: Vim is hard, I just want to click around
#8Earlier quoted context omitted.
That's exactly why I tried again. The drawer is just a way not to go completely mad when I'm stuck trying to open files "the fast way" and I think these tools make it easier for people to get the hang of it. :)
You can click on NERDTree with a mouse-enabled vim, for the record.
Re: Vim is hard, I just want to click around
#9I do this to get nice access to multiple files:
set hidden " allows files to be opened in background
nmap :bp " edit prev file with ctrl+j
nmap :bn " edit next file with ctrl+l
(goes in $HOME/.vimrc)Re: Vim is hard, I just want to click around
#10The author mentions trying to get around this with the nerdtree plugin. I stay away from heavy plugins like this because I think they compete with the minimalism that is so nice to the feel of vi. But I can see why you'd be attracted to it given the difficulty of dealing with multiple files. I do this to get nice access to multiple files: set hidden " allows files to be opened in background nmap :bp " edit prev file…