Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mastergreg committed Oct 7, 2012
1 parent d5eafb4 commit 071feda
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ftplugin/pzc.vim
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ let b:match_skip = 's:comment\|string\|character'
if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
if &ft == "pzc"
let b:browsefilter = "PZC Source Files (*.pzc *.pzh)\t*.pzc;*.pzh\n" .
\ "C Header Files (*.pzh)\t*.pzh\n" .
\ "PZC Header Files (*.pzh)\t*.pzh\n" .
\ "PZC Source Files (*.pzc)\t*.pzc\n" .
\ "All Files (*.*)\t*.*\n"
else
let b:browsefilter = "PZC Source Files (*.pzc)\t*.pzc\n" .
\ "C Header Files (*.pzh)\t*.pzh\n" .
\ "C++ Source Files (*.pzc)\t*.pzc\n" .
\ "PZC Header Files (*.pzh)\t*.pzh\n" .
\ "PZC Source Files (*.pzc)\t*.pzc\n" .
\ "All Files (*.*)\t*.*\n"
endif
endif
Expand Down
2 changes: 1 addition & 1 deletion indent/pzc.vim
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if exists("b:did_indent")
endif
let b:did_indent = 1

" C indenting is built-in, thus this is very simple
" PZC indenting is C indenting which i built-in, thus this is very simple
setlocal cindent

let b:undo_indent = "setl cin<"

0 comments on commit 071feda

Please sign in to comment.