Make some error strings more generic
[pgsql.git] / src / tools / editors / vim.samples
blobccbc93f69b6b346a8314472bd9d119e4b7182a67
1 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
3 " These settings are appropriate for editing PostgreSQL code with vim
5 " You would copy this into your .vimrc or equivalent
7 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
9 :if match(getcwd(), "/pgsql") >=0 ||  match(getcwd(), "/postgresql") >= 0
11 :  set cinoptions=(0
12 :  set tabstop=4
13 :  set shiftwidth=4
15 :endif
17 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""