do not indent when moving line with C-arrows

This commit is contained in:
nojhan 2012-08-16 14:34:01 +02:00
commit 51a42fc40e

16
.vimrc
View file

@ -137,10 +137,12 @@ endif
" move the current line up or down with the Ctrl-arrow keys " move the current line up or down with the Ctrl-arrow keys
nmap <C-Down> :m+<CR>== nmap <C-Down> :<C-u>move .+1<CR>
nmap <C-Up> :m-2<CR>== nmap <C-Up> :<C-u>move .-2<CR>
imap <C-Down> <C-O>:m+<CR><C-O>== imap <C-Down> <C-o>:<C-u>move .+1<CR>
imap <C-Up> <C-O>:m-2<CR><C-O>== imap <C-Up> <C-o>:<C-u>move .-2<CR>
vmap <C-Down> :move '>+1<CR>gv
vmap <C-Up> :move '<-2<CR>gv
filetype plugin on filetype plugin on
set ofu=syntaxcomplete#Complete set ofu=syntaxcomplete#Complete
@ -201,11 +203,11 @@ imap <F7> <C-o>:call MySpellLang()<CR>
" search the file for FIXME, TODO and put them in a handy list " search the file for FIXME, TODO and put them in a handy list
map <F10> <Plug>TaskList map <F10> <Plug>TaskList
" F11 - taglist window " side pane of class and functions
map <F11> :TlistToggle<cr> map <F11> :TlistToggle<cr>
" open buffers as tabs along the top or bottom of your screen " side pane of files
map <F12> :MiniBufExplorer<cr> map <F12> :NERDTreeToggle<cr>
" configure tags - add additional tags here or comment out not-used ones " configure tags - add additional tags here or comment out not-used ones
set tags+=~/.vim/tags/cpp set tags+=~/.vim/tags/cpp