spf13 / PIV

PHP Integration environment for Vim
250 stars 36 forks source link

auto generated doc format error #44

Closed wyntau closed 2 years ago

wyntau commented 8 years ago

when I call PhpDoc, I will get below auto generated doc. Is there a option I can use to disable formatoptions to include cro? I find php_autoformatcomment, but when I set it to 0, it didn't work

/* public abc($a, $b, $c) {{{ */ 
/**
 *  * abc
 *   * 
 *    * @param mixed $a 
 *     * @param mixed $b 
 *      * @param mixed $c 
 *       * @access public
 *        * @return void
 *         */
function abc($a, $b, $c){
  return $d;
}
/* }}} */