Fix ancient bug in handling of to_char modifier 'TH', when used with HH.
[PostgreSQL.git] / src / tools / editors / vim.samples
blob210d9a360aa9a09f0b75c4a80c9b892801e4db7e
2 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
4 " These settings are appropriate for editing PostgreSQL code with vim
6 " You would copy this into your .vimrc or equivalent
8 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
10 :if match(getcwd(), "/pgsql") >=0 ||  match(getcwd(), "/postgresql") >= 0
12 :  set cinoptions=(0
13 :  set tabstop=4
14 :  set shiftwidth=4
16 :endif
18 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""