1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-17 11:30:29 +01:00

Fixed statusline for py files

This commit is contained in:
2014-11-15 18:51:22 +01:00
parent 26ac85a858
commit f476a42da0
3 changed files with 4 additions and 2 deletions

View File

@@ -11,7 +11,5 @@ to make it (as described in the NeoBundle README file) is like this:
$ curl https://raw.githubusercontent.com/Shougo/neobundle.vim/master/bin/install.sh | sh
And than, just make the symlink to the ``.vimrc`` file to the home directory.
.. _NeoBundle: https://github.com/Shougo/neobundle.vim

View File

@@ -7,6 +7,7 @@ setlocal noautoindent
setlocal smartindent
setlocal cinwords=if,elif,else,for,while,try,except,finally,def,class,with
setlocal smarttab
setlocal statusline=%<%F\ %{TagInStatusLine()}\ %h%m%r%=%(%l,%c%V%)\ %3p%%
set wildignore+=*.pyc

View File

@@ -279,6 +279,9 @@ nnoremap <silent> <unique> <Leader>oc :Occur<CR>
nnoremap <silent> <unique> <Leader>om :Moccur<CR>
nnoremap <silent> <unique> <Leader>8 *<C-o>:Moccur<CR>
" }}}
" Pythonhelper {{{
let g:pythonhelper_updatetime = 1000
" }}}
"}}}
"KEYS: User defined keyboard shortcuts {{{