vim
'>, защото това ползват истинските мУже
http://www.linuxjournal.com/article/7737Ето ти малък vimrc, който ще те вкара в бизнеса(набързичко)
Примерен код |
scriptencoding utf-8 set nocompatible " use vim defaults filetype on filetype plugin on filetype indent on set tabstop=4 " numbers of spaces of tab character set softtabstop=4 " Really, really useful! set shiftwidth=4 " numbers of spaces to (auto)indent set hlsearch " highlight searches set incsearch " do incremental searching set ignorecase " No case sensitivity set ruler " show the cursor position all the time set scrolloff=3 " Keep 3 lines when we are scrolling " No bad visual annoying and beeps set novisualbell set visualbell t_vb= if has("autocmd") autocmd GUIEnter * set visualbell t_vb= endif "Enable folds if has("folding") set foldenable set foldmethod=indent endif " Do clever indent things. set autoindent set smartindent
|
За повече се запознай с документацията, за жалост тя не е малко '>. Това ще ти докара приятно търсене в документа като игнорира главни/малки букви, няма да ти мига и да ти издава гадните звуци, които не знам защо са изобщо по default . Още ще ти затваря блоковете ако ти е оформен добре документа. Може би малко дълго стана, но дано ти свърши работа.