Skip to content

Commit

Permalink
Release 0.12.9 including &matchpairs bug fix (issues #10 and #11)
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Nov 15, 2011
1 parent 8c79330 commit 1de0527
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions autoload/xolox/notes.vim
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
" Vim auto-load script
" Author: Peter Odding <peter@peterodding.com>
" Last Change: November 3, 2011
" Last Change: November 15, 2011
" URL: http://peterodding.com/code/vim/notes/

" Note: This file is encoded in UTF-8 including a byte order mark so
" that Vim loads the script using the right encoding transparently.

let g:xolox#notes#version = '0.12.8'
let g:xolox#notes#version = '0.12.9'

function! xolox#notes#shortcut() " {{{1
" The "note:" pseudo protocol is just a shortcut for the :Note command.
Expand Down
4 changes: 2 additions & 2 deletions ftplugin/notes.vim
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
" Vim file type plug-in
" Author: Peter Odding <peter@peterodding.com>
" Last Change: October 18, 2011
" Last Change: November 15, 2011
" URL: http://peterodding.com/code/vim/notes/

if exists('b:did_ftplugin')
Expand All @@ -11,7 +11,7 @@ endif

" Copy indent from previous line. {{{1
setlocal autoindent
let b:undo_ftplugin = ' | set autoindent<'
let b:undo_ftplugin = 'set autoindent<'

" Set &tabstop and &shiftwidth options for bulleted lists. {{{1
setlocal tabstop=3 shiftwidth=3 expandtab
Expand Down

0 comments on commit 1de0527

Please sign in to comment.