I'm dabbling in my own note tool (two minutes work thus far). Is there
anything out there that does this and has similar formatting helpers
so I'm not duplicating work?

~/.vim/ftplugin/note.vim:
" Continues a bulleted list
" TODO expand to "-" and others
fun! NoteLister()
    let line = getline(".")
    if match(line, "^\*") != -1
        exec "normal o* "
    endif
endfunction

inoremap <CR> <ESC>:call NoteLister()<CR>a

~/.vim/filetype.vim:
au! BufRead,BufNewFile *.note setfiletype note

Thanks,
Thomas

On Nov 9, 9:12 am, 703designs <[EMAIL PROTECTED]> wrote:
> I've tried VimOutliner before...it's very opinionated about how you
> take notes, and I found that this opinion was very different from my
> own.
>
> Thomas
>
> On Nov 9, 7:04 am, Mr.SpOOn <[EMAIL PROTECTED]> wrote:
>
> > All the solutions proposed seem really interesting.
>
> > The first one, similiar to the todotxt, is simple and cool.
>
> > The one proposed in the video I think is the closest to the tomboy
> > style, because you can jump through the notes via link. But it needs a
> > little work to set up.
>
> > I knew about vimoutliner, but I wasn't sure how to use it. Still I
> > don't know, but I think it is worth to learn. The same goes for the
> > script of Tom.
>
> > Maybe I'll start trying the solution proposed in the video.
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---

Reply via email to