Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am conormcd on github.
  • I am conormcd (https://keybase.io/conormcd) on keybase.
  • I have a public key ASAThQshivgF5kPSBUqLCYfKgDaB0ErucTVmcPtwKLuVzAo

To claim this, I am signing this object:

@conormcd
conormcd / vimrc-python-fragment.vim
Created March 9, 2012 17:21
vimrc fragment to highlight trailing semi-colons in python
autocmd BufNewFile,BufRead *.py call PythonRules()
autocmd FileType python call PythonRules()
function! PythonRules()
highlight TrailingSemiColon ctermbg=red guibg=red
match TrailingSemiColon /\;$/
endfunction