diff options
author | Naoaki Ueda <uedan@solutionware.jp> | 2020-09-25 15:35:14 +0900 |
---|---|---|
committer | Naoaki Ueda <uedan@solutionware.jp> | 2020-09-25 15:35:14 +0900 |
commit | 6ca931dd38805a4c47800761caa6aeb2f9b8b61d (patch) | |
tree | 90ec3444ad1fb140752aaf1d8e10fb843efa8908 /_config | |
parent | 05c64f68eafe9dab30249a7e84d1aaab685b8e86 (diff) | |
download | vimrc-6ca931dd38805a4c47800761caa6aeb2f9b8b61d.tar.gz vimrc-6ca931dd38805a4c47800761caa6aeb2f9b8b61d.tar.bz2 vimrc-6ca931dd38805a4c47800761caa6aeb2f9b8b61d.zip |
Fix some settings for Memolist.
Diffstat (limited to '_config')
-rw-r--r-- | _config/110-ctrlp.vim | 2 | ||||
-rw-r--r-- | _config/400-memolist.vim | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/_config/110-ctrlp.vim b/_config/110-ctrlp.vim index 20cf363..04f522d 100644 --- a/_config/110-ctrlp.vim +++ b/_config/110-ctrlp.vim @@ -14,6 +14,4 @@ endif if !empty(globpath(&rtp, 'autoload/memolist.vim')) nmap <Leader>mf :exe "CtrlP" g:memolist_path<cr><f5> - nmap <Leader>mc :MemoNew<cr> - nmap <Leader>mg :MemoGrep<cr> endif diff --git a/_config/400-memolist.vim b/_config/400-memolist.vim index 8bf15fb..ebe2753 100644 --- a/_config/400-memolist.vim +++ b/_config/400-memolist.vim @@ -4,9 +4,8 @@ endif let g:memolist_path = $HOME . '/.config/memo/_posts' -nnoremap <Leader>mn :MemoNew<CR> -nnoremap <Leader>ml :MemoList<CR> -nnoremap <Leader>mg :MemoGrep<CR> +nmap <Leader>mc :MemoNew<cr> +nmap <Leader>mg :MemoGrep<cr> let g:memolist_memo_suffix = "md" let g:memolist_memo_date = "%Y-%m-%d %H:%M" |