Skip to content

Commit

Permalink
update class
Browse files Browse the repository at this point in the history
  • Loading branch information
jwu committed Mar 21, 2012
1 parent 6d29c83 commit 1f1be0e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vimfiles/autoload/exUtility.vim
Expand Up @@ -723,11 +723,11 @@ function exUtility#PutDeclaration() " <<<
silent normal! o''
let space = printf('%*s',indent('.'),'')
silent call setline ( '.', space . b:ECcommentOpen . "/////////////////////////////////////////////////////////////////////////////" . b:ECcommentClose )
silent call append ( '.', space . b:ECcommentOpen . " \class " . b:ECcommentClose )
silent call append ( '.', space . b:ECcommentOpen . " \\class " . b:ECcommentClose )
silent normal! j
silent call append ( '.', space . b:ECcommentOpen . " " . b:ECcommentClose )
silent normal! j
silent call append ( '.', space . b:ECcommentOpen . " \brief " . b:ECcommentClose )
silent call append ( '.', space . b:ECcommentOpen . " \\brief " . b:ECcommentClose )
silent normal! j
silent call append ( '.', space . b:ECcommentOpen . " " . b:ECcommentClose )
silent normal! j
Expand Down Expand Up @@ -792,9 +792,9 @@ endfunction " >>>

function exUtility#PutClass( class_type, class_name ) " <<<
execute 'normal! ' . 'o' . "///////////////////////////////////////////////////////////////////////////////"
execute 'normal! ' . 'o' . "/// \class " . a:class_name
execute 'normal! ' . 'o' . "/// \\class " . a:class_name
execute 'normal! ' . 'o' . "/// "
execute 'normal! ' . 'o' . "/// \brief: "
execute 'normal! ' . 'o' . "/// \\brief: "
execute 'normal! ' . 'o' . "/// "
execute 'normal! ' . 'o' . "///////////////////////////////////////////////////////////////////////////////"
execute 'normal! ' . 'o'
Expand Down

0 comments on commit 1f1be0e

Please sign in to comment.