Questions tagged [vim7.3]

Vim7.3 is version of Vim text editor

Vim7.3 is version of Vim text editor.

Related tags:

3 questions
3
votes
1 answer

VIM autoindent doesn't work properly

In VIM when I type gg=G to auto indent the whole code, everything gets indented correctly except the lines with the following structure: $my_arr = array( 'a' => 1, 'b' => 2, ) I have set shiftwidth and tabstop to 2, but it indents the…
user16948
  • 4,801
  • 10
  • 30
  • 41
1
vote
1 answer

Autocmd in vim not calling the function

" Python logger-print and vice-versa function! SetPrintLogMaps() echom "called" nnoremap lp "lyy"lp"l5cawprint^[ nnoremap ll "lyy"lp"lcawself.logger.info(^O$)^[ endfunction autocmd BufWrite,BufRead…
0
votes
1 answer

Set runtimepath for vim in command line alias

I want to set an alias for vim so that when I use vim I want all my personal vim files to be sourced. (I want to do this because the machine I use is used by everyone else, so I don't want to affect others' usage. The alias is also set only when I…