Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/844196/memo.vim
べんり memo for Vim
https://github.com/844196/memo.vim
Last synced: 27 days ago
JSON representation
べんり memo for Vim
- Host: GitHub
- URL: https://github.com/844196/memo.vim
- Owner: 844196
- License: other
- Created: 2014-11-18T13:02:23.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-17T14:49:12.000Z (about 9 years ago)
- Last Synced: 2023-08-02T04:55:11.912Z (over 1 year ago)
- Language: VimL
- Homepage:
- Size: 156 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# memo.vim
[![](http://img.shields.io/github/tag/844196/memo.vim.svg?style=flat)](https://github.com/844196/memo.vim/releases)
[![](http://img.shields.io/github/issues/844196/memo.vim.svg?style=flat)](https://github.com/844196/memo.vim/issues)
[![](http://img.shields.io/badge/license-WTFPL%202.0-red.svg?style=flat)](LICENSE)![](http://38.media.tumblr.com/3ef24bb9094deb07fd2b6e796365ba69/tumblr_nfjhjf0enF1s7qf9xo1_1280.gif)
## Usage
### Installation
```vim
" add .vimrc
NeoBundle '844196/memo.vim', {
\ 'depends' : 'Shougo/unite.vim'
\ }
```### Basic usage
```vim
" set g:memopath
let g:memopath = '~/yukimura/aoichan/kawaii/'
```- `:Unite memo` create new memo & view memo list
### Additional usages
```vim
" create new memo & view memo list
nnoremap :Unite memo
\ -buffer-name=memo_list -winheight=10 -max-multi-lines=1
\" grep memo
nnoremap :execute(
\ 'Unite grep:' . memo#getpath() . ' -no-empty -winheight=10'
\ )
```